@aws-sdk/client-database-migration-service 3.929.0 → 3.930.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 +56 -0
- package/dist-cjs/index.js +313 -80
- package/dist-es/DatabaseMigrationService.js +14 -0
- package/dist-es/commands/CancelMetadataModelConversionCommand.js +16 -0
- package/dist-es/commands/CancelMetadataModelCreationCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelChildrenCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelCreationsCommand.js +16 -0
- package/dist-es/commands/GetTargetSelectionRulesCommand.js +16 -0
- package/dist-es/commands/StartMetadataModelCreationCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +4 -34
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/pagination/DescribeMetadataModelChildrenPaginator.js +4 -0
- package/dist-es/pagination/DescribeMetadataModelCreationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +205 -42
- package/dist-types/DatabaseMigrationService.d.ts +49 -0
- package/dist-types/DatabaseMigrationServiceClient.d.ts +9 -2
- package/dist-types/commands/CancelMetadataModelConversionCommand.d.ts +98 -0
- package/dist-types/commands/CancelMetadataModelCreationCommand.d.ts +98 -0
- package/dist-types/commands/DescribeMetadataModelChildrenCommand.d.ts +91 -0
- package/dist-types/commands/DescribeMetadataModelCommand.d.ts +91 -0
- package/dist-types/commands/DescribeMetadataModelCreationsCommand.d.ts +107 -0
- package/dist-types/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationsCommand.d.ts +2 -1
- package/dist-types/commands/GetTargetSelectionRulesCommand.d.ts +85 -0
- package/dist-types/commands/StartMetadataModelCreationCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +331 -843
- package/dist-types/models/models_1.d.ts +825 -7
- package/dist-types/pagination/DescribeMetadataModelChildrenPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeMetadataModelCreationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +119 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelMetadataModelConversionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelMetadataModelCreationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelChildrenCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelCreationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetTargetSelectionRulesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartMetadataModelCreationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +87 -151
- package/dist-types/ts3.4/models/models_1.d.ts +156 -8
- package/dist-types/ts3.4/pagination/DescribeMetadataModelChildrenPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeMetadataModelCreationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +34 -34
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeMetadataModelChildrenCommandInput, DescribeMetadataModelChildrenCommandOutput } from "../commands/DescribeMetadataModelChildrenCommand";
|
|
3
|
+
import { DatabaseMigrationServicePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateDescribeMetadataModelChildren: (config: DatabaseMigrationServicePaginationConfiguration, input: DescribeMetadataModelChildrenCommandInput, ...rest: any[]) => Paginator<DescribeMetadataModelChildrenCommandOutput>;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { DescribeMetadataModelCreationsCommandInput, DescribeMetadataModelCreationsCommandOutput } from "../commands/DescribeMetadataModelCreationsCommand";
|
|
3
|
+
import { DatabaseMigrationServicePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateDescribeMetadataModelCreations: (config: DatabaseMigrationServicePaginationConfiguration, input: DescribeMetadataModelCreationsCommandInput, ...rest: any[]) => Paginator<DescribeMetadataModelCreationsCommandOutput>;
|
|
@@ -18,7 +18,9 @@ export * from "./DescribeFleetAdvisorSchemaObjectSummaryPaginator";
|
|
|
18
18
|
export * from "./DescribeFleetAdvisorSchemasPaginator";
|
|
19
19
|
export * from "./DescribeInstanceProfilesPaginator";
|
|
20
20
|
export * from "./DescribeMetadataModelAssessmentsPaginator";
|
|
21
|
+
export * from "./DescribeMetadataModelChildrenPaginator";
|
|
21
22
|
export * from "./DescribeMetadataModelConversionsPaginator";
|
|
23
|
+
export * from "./DescribeMetadataModelCreationsPaginator";
|
|
22
24
|
export * from "./DescribeMetadataModelExportsAsScriptPaginator";
|
|
23
25
|
export * from "./DescribeMetadataModelExportsToTargetPaginator";
|
|
24
26
|
export * from "./DescribeMetadataModelImportsPaginator";
|
|
@@ -10,6 +10,10 @@ export declare var AvailabilityZone: StaticStructureSchema;
|
|
|
10
10
|
export declare var BatchStartRecommendationsErrorEntry: StaticStructureSchema;
|
|
11
11
|
export declare var BatchStartRecommendationsRequest: StaticStructureSchema;
|
|
12
12
|
export declare var BatchStartRecommendationsResponse: StaticStructureSchema;
|
|
13
|
+
export declare var CancelMetadataModelConversionMessage: StaticStructureSchema;
|
|
14
|
+
export declare var CancelMetadataModelConversionResponse: StaticStructureSchema;
|
|
15
|
+
export declare var CancelMetadataModelCreationMessage: StaticStructureSchema;
|
|
16
|
+
export declare var CancelMetadataModelCreationResponse: StaticStructureSchema;
|
|
13
17
|
export declare var CancelReplicationTaskAssessmentRunMessage: StaticStructureSchema;
|
|
14
18
|
export declare var CancelReplicationTaskAssessmentRunResponse: StaticStructureSchema;
|
|
15
19
|
export declare var Certificate: StaticStructureSchema;
|
|
@@ -124,14 +128,20 @@ export declare var DescribeInstanceProfilesMessage: StaticStructureSchema;
|
|
|
124
128
|
export declare var DescribeInstanceProfilesResponse: StaticStructureSchema;
|
|
125
129
|
export declare var DescribeMetadataModelAssessmentsMessage: StaticStructureSchema;
|
|
126
130
|
export declare var DescribeMetadataModelAssessmentsResponse: StaticStructureSchema;
|
|
131
|
+
export declare var DescribeMetadataModelChildrenMessage: StaticStructureSchema;
|
|
132
|
+
export declare var DescribeMetadataModelChildrenResponse: StaticStructureSchema;
|
|
127
133
|
export declare var DescribeMetadataModelConversionsMessage: StaticStructureSchema;
|
|
128
134
|
export declare var DescribeMetadataModelConversionsResponse: StaticStructureSchema;
|
|
135
|
+
export declare var DescribeMetadataModelCreationsMessage: StaticStructureSchema;
|
|
136
|
+
export declare var DescribeMetadataModelCreationsResponse: StaticStructureSchema;
|
|
129
137
|
export declare var DescribeMetadataModelExportsAsScriptMessage: StaticStructureSchema;
|
|
130
138
|
export declare var DescribeMetadataModelExportsAsScriptResponse: StaticStructureSchema;
|
|
131
139
|
export declare var DescribeMetadataModelExportsToTargetMessage: StaticStructureSchema;
|
|
132
140
|
export declare var DescribeMetadataModelExportsToTargetResponse: StaticStructureSchema;
|
|
133
141
|
export declare var DescribeMetadataModelImportsMessage: StaticStructureSchema;
|
|
134
142
|
export declare var DescribeMetadataModelImportsResponse: StaticStructureSchema;
|
|
143
|
+
export declare var DescribeMetadataModelMessage: StaticStructureSchema;
|
|
144
|
+
export declare var DescribeMetadataModelResponse: StaticStructureSchema;
|
|
135
145
|
export declare var DescribeMigrationProjectsMessage: StaticStructureSchema;
|
|
136
146
|
export declare var DescribeMigrationProjectsResponse: StaticStructureSchema;
|
|
137
147
|
export declare var DescribeOrderableReplicationInstancesMessage: StaticStructureSchema;
|
|
@@ -188,6 +198,8 @@ export declare var Filter: StaticStructureSchema;
|
|
|
188
198
|
export declare var FleetAdvisorLsaAnalysisResponse: StaticStructureSchema;
|
|
189
199
|
export declare var FleetAdvisorSchemaObjectResponse: StaticStructureSchema;
|
|
190
200
|
export declare var GcpMySQLSettings: StaticStructureSchema;
|
|
201
|
+
export declare var GetTargetSelectionRulesMessage: StaticStructureSchema;
|
|
202
|
+
export declare var GetTargetSelectionRulesResponse: StaticStructureSchema;
|
|
191
203
|
export declare var IbmDb2LuwDataProviderSettings: StaticStructureSchema;
|
|
192
204
|
export declare var IBMDb2Settings: StaticStructureSchema;
|
|
193
205
|
export declare var IbmDb2zOsDataProviderSettings: StaticStructureSchema;
|
|
@@ -214,6 +226,7 @@ export declare var Limitation: StaticStructureSchema;
|
|
|
214
226
|
export declare var ListTagsForResourceMessage: StaticStructureSchema;
|
|
215
227
|
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
216
228
|
export declare var MariaDbDataProviderSettings: StaticStructureSchema;
|
|
229
|
+
export declare var MetadataModelReference: StaticStructureSchema;
|
|
217
230
|
export declare var MicrosoftSqlServerDataProviderSettings: StaticStructureSchema;
|
|
218
231
|
export declare var MicrosoftSQLServerSettings: StaticStructureSchema;
|
|
219
232
|
export declare var MigrationProject: StaticStructureSchema;
|
|
@@ -313,6 +326,8 @@ export declare var StartMetadataModelAssessmentMessage: StaticStructureSchema;
|
|
|
313
326
|
export declare var StartMetadataModelAssessmentResponse: StaticStructureSchema;
|
|
314
327
|
export declare var StartMetadataModelConversionMessage: StaticStructureSchema;
|
|
315
328
|
export declare var StartMetadataModelConversionResponse: StaticStructureSchema;
|
|
329
|
+
export declare var StartMetadataModelCreationMessage: StaticStructureSchema;
|
|
330
|
+
export declare var StartMetadataModelCreationResponse: StaticStructureSchema;
|
|
316
331
|
export declare var StartMetadataModelExportAsScriptMessage: StaticStructureSchema;
|
|
317
332
|
export declare var StartMetadataModelExportAsScriptResponse: StaticStructureSchema;
|
|
318
333
|
export declare var StartMetadataModelExportToTargetMessage: StaticStructureSchema;
|
|
@@ -329,6 +344,7 @@ export declare var StartReplicationTaskAssessmentRunMessage: StaticStructureSche
|
|
|
329
344
|
export declare var StartReplicationTaskAssessmentRunResponse: StaticStructureSchema;
|
|
330
345
|
export declare var StartReplicationTaskMessage: StaticStructureSchema;
|
|
331
346
|
export declare var StartReplicationTaskResponse: StaticStructureSchema;
|
|
347
|
+
export declare var StatementProperties: StaticStructureSchema;
|
|
332
348
|
export declare var StopDataMigrationMessage: StaticStructureSchema;
|
|
333
349
|
export declare var StopDataMigrationResponse: StaticStructureSchema;
|
|
334
350
|
export declare var StopReplicationMessage: StaticStructureSchema;
|
|
@@ -389,6 +405,7 @@ export declare var InstanceProfileList: StaticListSchema;
|
|
|
389
405
|
export declare var IntegerList: number;
|
|
390
406
|
export declare var KeyList: number;
|
|
391
407
|
export declare var LimitationList: StaticListSchema;
|
|
408
|
+
export declare var MetadataModelReferenceList: StaticListSchema;
|
|
392
409
|
export declare var MigrationProjectList: StaticListSchema;
|
|
393
410
|
export declare var OrderableReplicationInstanceList: StaticListSchema;
|
|
394
411
|
export declare var PendingMaintenanceActionDetails: StaticListSchema;
|
|
@@ -426,9 +443,12 @@ export declare var VpcSecurityGroupIdList: StaticListSchema;
|
|
|
426
443
|
export declare var VpcSecurityGroupMembershipList: StaticListSchema;
|
|
427
444
|
export declare var DataProviderSettings: StaticStructureSchema;
|
|
428
445
|
export declare var ErrorDetails: StaticStructureSchema;
|
|
446
|
+
export declare var MetadataModelProperties: StaticStructureSchema;
|
|
429
447
|
export declare var AddTagsToResource: StaticOperationSchema;
|
|
430
448
|
export declare var ApplyPendingMaintenanceAction: StaticOperationSchema;
|
|
431
449
|
export declare var BatchStartRecommendations: StaticOperationSchema;
|
|
450
|
+
export declare var CancelMetadataModelConversion: StaticOperationSchema;
|
|
451
|
+
export declare var CancelMetadataModelCreation: StaticOperationSchema;
|
|
432
452
|
export declare var CancelReplicationTaskAssessmentRun: StaticOperationSchema;
|
|
433
453
|
export declare var CreateDataMigration: StaticOperationSchema;
|
|
434
454
|
export declare var CreateDataProvider: StaticOperationSchema;
|
|
@@ -477,8 +497,11 @@ export declare var DescribeFleetAdvisorLsaAnalysis: StaticOperationSchema;
|
|
|
477
497
|
export declare var DescribeFleetAdvisorSchemaObjectSummary: StaticOperationSchema;
|
|
478
498
|
export declare var DescribeFleetAdvisorSchemas: StaticOperationSchema;
|
|
479
499
|
export declare var DescribeInstanceProfiles: StaticOperationSchema;
|
|
500
|
+
export declare var DescribeMetadataModel: StaticOperationSchema;
|
|
480
501
|
export declare var DescribeMetadataModelAssessments: StaticOperationSchema;
|
|
502
|
+
export declare var DescribeMetadataModelChildren: StaticOperationSchema;
|
|
481
503
|
export declare var DescribeMetadataModelConversions: StaticOperationSchema;
|
|
504
|
+
export declare var DescribeMetadataModelCreations: StaticOperationSchema;
|
|
482
505
|
export declare var DescribeMetadataModelExportsAsScript: StaticOperationSchema;
|
|
483
506
|
export declare var DescribeMetadataModelExportsToTarget: StaticOperationSchema;
|
|
484
507
|
export declare var DescribeMetadataModelImports: StaticOperationSchema;
|
|
@@ -501,6 +524,7 @@ export declare var DescribeReplicationTasks: StaticOperationSchema;
|
|
|
501
524
|
export declare var DescribeSchemas: StaticOperationSchema;
|
|
502
525
|
export declare var DescribeTableStatistics: StaticOperationSchema;
|
|
503
526
|
export declare var ExportMetadataModelAssessment: StaticOperationSchema;
|
|
527
|
+
export declare var GetTargetSelectionRules: StaticOperationSchema;
|
|
504
528
|
export declare var ImportCertificate: StaticOperationSchema;
|
|
505
529
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
506
530
|
export declare var ModifyConversionConfiguration: StaticOperationSchema;
|
|
@@ -525,6 +549,7 @@ export declare var StartDataMigration: StaticOperationSchema;
|
|
|
525
549
|
export declare var StartExtensionPackAssociation: StaticOperationSchema;
|
|
526
550
|
export declare var StartMetadataModelAssessment: StaticOperationSchema;
|
|
527
551
|
export declare var StartMetadataModelConversion: StaticOperationSchema;
|
|
552
|
+
export declare var StartMetadataModelCreation: StaticOperationSchema;
|
|
528
553
|
export declare var StartMetadataModelExportAsScript: StaticOperationSchema;
|
|
529
554
|
export declare var StartMetadataModelExportToTarget: StaticOperationSchema;
|
|
530
555
|
export declare var StartMetadataModelImport: StaticOperationSchema;
|
|
@@ -11,6 +11,14 @@ import {
|
|
|
11
11
|
BatchStartRecommendationsCommandInput,
|
|
12
12
|
BatchStartRecommendationsCommandOutput,
|
|
13
13
|
} from "./commands/BatchStartRecommendationsCommand";
|
|
14
|
+
import {
|
|
15
|
+
CancelMetadataModelConversionCommandInput,
|
|
16
|
+
CancelMetadataModelConversionCommandOutput,
|
|
17
|
+
} from "./commands/CancelMetadataModelConversionCommand";
|
|
18
|
+
import {
|
|
19
|
+
CancelMetadataModelCreationCommandInput,
|
|
20
|
+
CancelMetadataModelCreationCommandOutput,
|
|
21
|
+
} from "./commands/CancelMetadataModelCreationCommand";
|
|
14
22
|
import {
|
|
15
23
|
CancelReplicationTaskAssessmentRunCommandInput,
|
|
16
24
|
CancelReplicationTaskAssessmentRunCommandOutput,
|
|
@@ -207,10 +215,22 @@ import {
|
|
|
207
215
|
DescribeMetadataModelAssessmentsCommandInput,
|
|
208
216
|
DescribeMetadataModelAssessmentsCommandOutput,
|
|
209
217
|
} from "./commands/DescribeMetadataModelAssessmentsCommand";
|
|
218
|
+
import {
|
|
219
|
+
DescribeMetadataModelChildrenCommandInput,
|
|
220
|
+
DescribeMetadataModelChildrenCommandOutput,
|
|
221
|
+
} from "./commands/DescribeMetadataModelChildrenCommand";
|
|
222
|
+
import {
|
|
223
|
+
DescribeMetadataModelCommandInput,
|
|
224
|
+
DescribeMetadataModelCommandOutput,
|
|
225
|
+
} from "./commands/DescribeMetadataModelCommand";
|
|
210
226
|
import {
|
|
211
227
|
DescribeMetadataModelConversionsCommandInput,
|
|
212
228
|
DescribeMetadataModelConversionsCommandOutput,
|
|
213
229
|
} from "./commands/DescribeMetadataModelConversionsCommand";
|
|
230
|
+
import {
|
|
231
|
+
DescribeMetadataModelCreationsCommandInput,
|
|
232
|
+
DescribeMetadataModelCreationsCommandOutput,
|
|
233
|
+
} from "./commands/DescribeMetadataModelCreationsCommand";
|
|
214
234
|
import {
|
|
215
235
|
DescribeMetadataModelExportsAsScriptCommandInput,
|
|
216
236
|
DescribeMetadataModelExportsAsScriptCommandOutput,
|
|
@@ -299,6 +319,10 @@ import {
|
|
|
299
319
|
ExportMetadataModelAssessmentCommandInput,
|
|
300
320
|
ExportMetadataModelAssessmentCommandOutput,
|
|
301
321
|
} from "./commands/ExportMetadataModelAssessmentCommand";
|
|
322
|
+
import {
|
|
323
|
+
GetTargetSelectionRulesCommandInput,
|
|
324
|
+
GetTargetSelectionRulesCommandOutput,
|
|
325
|
+
} from "./commands/GetTargetSelectionRulesCommand";
|
|
302
326
|
import {
|
|
303
327
|
ImportCertificateCommandInput,
|
|
304
328
|
ImportCertificateCommandOutput,
|
|
@@ -395,6 +419,10 @@ import {
|
|
|
395
419
|
StartMetadataModelConversionCommandInput,
|
|
396
420
|
StartMetadataModelConversionCommandOutput,
|
|
397
421
|
} from "./commands/StartMetadataModelConversionCommand";
|
|
422
|
+
import {
|
|
423
|
+
StartMetadataModelCreationCommandInput,
|
|
424
|
+
StartMetadataModelCreationCommandOutput,
|
|
425
|
+
} from "./commands/StartMetadataModelCreationCommand";
|
|
398
426
|
import {
|
|
399
427
|
StartMetadataModelExportAsScriptCommandInput,
|
|
400
428
|
StartMetadataModelExportAsScriptCommandOutput,
|
|
@@ -489,6 +517,32 @@ export interface DatabaseMigrationService {
|
|
|
489
517
|
options: __HttpHandlerOptions,
|
|
490
518
|
cb: (err: any, data?: BatchStartRecommendationsCommandOutput) => void
|
|
491
519
|
): void;
|
|
520
|
+
cancelMetadataModelConversion(
|
|
521
|
+
args: CancelMetadataModelConversionCommandInput,
|
|
522
|
+
options?: __HttpHandlerOptions
|
|
523
|
+
): Promise<CancelMetadataModelConversionCommandOutput>;
|
|
524
|
+
cancelMetadataModelConversion(
|
|
525
|
+
args: CancelMetadataModelConversionCommandInput,
|
|
526
|
+
cb: (err: any, data?: CancelMetadataModelConversionCommandOutput) => void
|
|
527
|
+
): void;
|
|
528
|
+
cancelMetadataModelConversion(
|
|
529
|
+
args: CancelMetadataModelConversionCommandInput,
|
|
530
|
+
options: __HttpHandlerOptions,
|
|
531
|
+
cb: (err: any, data?: CancelMetadataModelConversionCommandOutput) => void
|
|
532
|
+
): void;
|
|
533
|
+
cancelMetadataModelCreation(
|
|
534
|
+
args: CancelMetadataModelCreationCommandInput,
|
|
535
|
+
options?: __HttpHandlerOptions
|
|
536
|
+
): Promise<CancelMetadataModelCreationCommandOutput>;
|
|
537
|
+
cancelMetadataModelCreation(
|
|
538
|
+
args: CancelMetadataModelCreationCommandInput,
|
|
539
|
+
cb: (err: any, data?: CancelMetadataModelCreationCommandOutput) => void
|
|
540
|
+
): void;
|
|
541
|
+
cancelMetadataModelCreation(
|
|
542
|
+
args: CancelMetadataModelCreationCommandInput,
|
|
543
|
+
options: __HttpHandlerOptions,
|
|
544
|
+
cb: (err: any, data?: CancelMetadataModelCreationCommandOutput) => void
|
|
545
|
+
): void;
|
|
492
546
|
cancelReplicationTaskAssessmentRun(
|
|
493
547
|
args: CancelReplicationTaskAssessmentRunCommandInput,
|
|
494
548
|
options?: __HttpHandlerOptions
|
|
@@ -1162,6 +1216,19 @@ export interface DatabaseMigrationService {
|
|
|
1162
1216
|
options: __HttpHandlerOptions,
|
|
1163
1217
|
cb: (err: any, data?: DescribeInstanceProfilesCommandOutput) => void
|
|
1164
1218
|
): void;
|
|
1219
|
+
describeMetadataModel(
|
|
1220
|
+
args: DescribeMetadataModelCommandInput,
|
|
1221
|
+
options?: __HttpHandlerOptions
|
|
1222
|
+
): Promise<DescribeMetadataModelCommandOutput>;
|
|
1223
|
+
describeMetadataModel(
|
|
1224
|
+
args: DescribeMetadataModelCommandInput,
|
|
1225
|
+
cb: (err: any, data?: DescribeMetadataModelCommandOutput) => void
|
|
1226
|
+
): void;
|
|
1227
|
+
describeMetadataModel(
|
|
1228
|
+
args: DescribeMetadataModelCommandInput,
|
|
1229
|
+
options: __HttpHandlerOptions,
|
|
1230
|
+
cb: (err: any, data?: DescribeMetadataModelCommandOutput) => void
|
|
1231
|
+
): void;
|
|
1165
1232
|
describeMetadataModelAssessments(
|
|
1166
1233
|
args: DescribeMetadataModelAssessmentsCommandInput,
|
|
1167
1234
|
options?: __HttpHandlerOptions
|
|
@@ -1175,6 +1242,19 @@ export interface DatabaseMigrationService {
|
|
|
1175
1242
|
options: __HttpHandlerOptions,
|
|
1176
1243
|
cb: (err: any, data?: DescribeMetadataModelAssessmentsCommandOutput) => void
|
|
1177
1244
|
): void;
|
|
1245
|
+
describeMetadataModelChildren(
|
|
1246
|
+
args: DescribeMetadataModelChildrenCommandInput,
|
|
1247
|
+
options?: __HttpHandlerOptions
|
|
1248
|
+
): Promise<DescribeMetadataModelChildrenCommandOutput>;
|
|
1249
|
+
describeMetadataModelChildren(
|
|
1250
|
+
args: DescribeMetadataModelChildrenCommandInput,
|
|
1251
|
+
cb: (err: any, data?: DescribeMetadataModelChildrenCommandOutput) => void
|
|
1252
|
+
): void;
|
|
1253
|
+
describeMetadataModelChildren(
|
|
1254
|
+
args: DescribeMetadataModelChildrenCommandInput,
|
|
1255
|
+
options: __HttpHandlerOptions,
|
|
1256
|
+
cb: (err: any, data?: DescribeMetadataModelChildrenCommandOutput) => void
|
|
1257
|
+
): void;
|
|
1178
1258
|
describeMetadataModelConversions(
|
|
1179
1259
|
args: DescribeMetadataModelConversionsCommandInput,
|
|
1180
1260
|
options?: __HttpHandlerOptions
|
|
@@ -1188,6 +1268,19 @@ export interface DatabaseMigrationService {
|
|
|
1188
1268
|
options: __HttpHandlerOptions,
|
|
1189
1269
|
cb: (err: any, data?: DescribeMetadataModelConversionsCommandOutput) => void
|
|
1190
1270
|
): void;
|
|
1271
|
+
describeMetadataModelCreations(
|
|
1272
|
+
args: DescribeMetadataModelCreationsCommandInput,
|
|
1273
|
+
options?: __HttpHandlerOptions
|
|
1274
|
+
): Promise<DescribeMetadataModelCreationsCommandOutput>;
|
|
1275
|
+
describeMetadataModelCreations(
|
|
1276
|
+
args: DescribeMetadataModelCreationsCommandInput,
|
|
1277
|
+
cb: (err: any, data?: DescribeMetadataModelCreationsCommandOutput) => void
|
|
1278
|
+
): void;
|
|
1279
|
+
describeMetadataModelCreations(
|
|
1280
|
+
args: DescribeMetadataModelCreationsCommandInput,
|
|
1281
|
+
options: __HttpHandlerOptions,
|
|
1282
|
+
cb: (err: any, data?: DescribeMetadataModelCreationsCommandOutput) => void
|
|
1283
|
+
): void;
|
|
1191
1284
|
describeMetadataModelExportsAsScript(
|
|
1192
1285
|
args: DescribeMetadataModelExportsAsScriptCommandInput,
|
|
1193
1286
|
options?: __HttpHandlerOptions
|
|
@@ -1547,6 +1640,19 @@ export interface DatabaseMigrationService {
|
|
|
1547
1640
|
options: __HttpHandlerOptions,
|
|
1548
1641
|
cb: (err: any, data?: ExportMetadataModelAssessmentCommandOutput) => void
|
|
1549
1642
|
): void;
|
|
1643
|
+
getTargetSelectionRules(
|
|
1644
|
+
args: GetTargetSelectionRulesCommandInput,
|
|
1645
|
+
options?: __HttpHandlerOptions
|
|
1646
|
+
): Promise<GetTargetSelectionRulesCommandOutput>;
|
|
1647
|
+
getTargetSelectionRules(
|
|
1648
|
+
args: GetTargetSelectionRulesCommandInput,
|
|
1649
|
+
cb: (err: any, data?: GetTargetSelectionRulesCommandOutput) => void
|
|
1650
|
+
): void;
|
|
1651
|
+
getTargetSelectionRules(
|
|
1652
|
+
args: GetTargetSelectionRulesCommandInput,
|
|
1653
|
+
options: __HttpHandlerOptions,
|
|
1654
|
+
cb: (err: any, data?: GetTargetSelectionRulesCommandOutput) => void
|
|
1655
|
+
): void;
|
|
1550
1656
|
importCertificate(
|
|
1551
1657
|
args: ImportCertificateCommandInput,
|
|
1552
1658
|
options?: __HttpHandlerOptions
|
|
@@ -1861,6 +1967,19 @@ export interface DatabaseMigrationService {
|
|
|
1861
1967
|
options: __HttpHandlerOptions,
|
|
1862
1968
|
cb: (err: any, data?: StartMetadataModelConversionCommandOutput) => void
|
|
1863
1969
|
): void;
|
|
1970
|
+
startMetadataModelCreation(
|
|
1971
|
+
args: StartMetadataModelCreationCommandInput,
|
|
1972
|
+
options?: __HttpHandlerOptions
|
|
1973
|
+
): Promise<StartMetadataModelCreationCommandOutput>;
|
|
1974
|
+
startMetadataModelCreation(
|
|
1975
|
+
args: StartMetadataModelCreationCommandInput,
|
|
1976
|
+
cb: (err: any, data?: StartMetadataModelCreationCommandOutput) => void
|
|
1977
|
+
): void;
|
|
1978
|
+
startMetadataModelCreation(
|
|
1979
|
+
args: StartMetadataModelCreationCommandInput,
|
|
1980
|
+
options: __HttpHandlerOptions,
|
|
1981
|
+
cb: (err: any, data?: StartMetadataModelCreationCommandOutput) => void
|
|
1982
|
+
): void;
|
|
1864
1983
|
startMetadataModelExportAsScript(
|
|
1865
1984
|
args: StartMetadataModelExportAsScriptCommandInput,
|
|
1866
1985
|
options?: __HttpHandlerOptions
|
|
@@ -60,6 +60,14 @@ import {
|
|
|
60
60
|
BatchStartRecommendationsCommandInput,
|
|
61
61
|
BatchStartRecommendationsCommandOutput,
|
|
62
62
|
} from "./commands/BatchStartRecommendationsCommand";
|
|
63
|
+
import {
|
|
64
|
+
CancelMetadataModelConversionCommandInput,
|
|
65
|
+
CancelMetadataModelConversionCommandOutput,
|
|
66
|
+
} from "./commands/CancelMetadataModelConversionCommand";
|
|
67
|
+
import {
|
|
68
|
+
CancelMetadataModelCreationCommandInput,
|
|
69
|
+
CancelMetadataModelCreationCommandOutput,
|
|
70
|
+
} from "./commands/CancelMetadataModelCreationCommand";
|
|
63
71
|
import {
|
|
64
72
|
CancelReplicationTaskAssessmentRunCommandInput,
|
|
65
73
|
CancelReplicationTaskAssessmentRunCommandOutput,
|
|
@@ -256,10 +264,22 @@ import {
|
|
|
256
264
|
DescribeMetadataModelAssessmentsCommandInput,
|
|
257
265
|
DescribeMetadataModelAssessmentsCommandOutput,
|
|
258
266
|
} from "./commands/DescribeMetadataModelAssessmentsCommand";
|
|
267
|
+
import {
|
|
268
|
+
DescribeMetadataModelChildrenCommandInput,
|
|
269
|
+
DescribeMetadataModelChildrenCommandOutput,
|
|
270
|
+
} from "./commands/DescribeMetadataModelChildrenCommand";
|
|
271
|
+
import {
|
|
272
|
+
DescribeMetadataModelCommandInput,
|
|
273
|
+
DescribeMetadataModelCommandOutput,
|
|
274
|
+
} from "./commands/DescribeMetadataModelCommand";
|
|
259
275
|
import {
|
|
260
276
|
DescribeMetadataModelConversionsCommandInput,
|
|
261
277
|
DescribeMetadataModelConversionsCommandOutput,
|
|
262
278
|
} from "./commands/DescribeMetadataModelConversionsCommand";
|
|
279
|
+
import {
|
|
280
|
+
DescribeMetadataModelCreationsCommandInput,
|
|
281
|
+
DescribeMetadataModelCreationsCommandOutput,
|
|
282
|
+
} from "./commands/DescribeMetadataModelCreationsCommand";
|
|
263
283
|
import {
|
|
264
284
|
DescribeMetadataModelExportsAsScriptCommandInput,
|
|
265
285
|
DescribeMetadataModelExportsAsScriptCommandOutput,
|
|
@@ -348,6 +368,10 @@ import {
|
|
|
348
368
|
ExportMetadataModelAssessmentCommandInput,
|
|
349
369
|
ExportMetadataModelAssessmentCommandOutput,
|
|
350
370
|
} from "./commands/ExportMetadataModelAssessmentCommand";
|
|
371
|
+
import {
|
|
372
|
+
GetTargetSelectionRulesCommandInput,
|
|
373
|
+
GetTargetSelectionRulesCommandOutput,
|
|
374
|
+
} from "./commands/GetTargetSelectionRulesCommand";
|
|
351
375
|
import {
|
|
352
376
|
ImportCertificateCommandInput,
|
|
353
377
|
ImportCertificateCommandOutput,
|
|
@@ -444,6 +468,10 @@ import {
|
|
|
444
468
|
StartMetadataModelConversionCommandInput,
|
|
445
469
|
StartMetadataModelConversionCommandOutput,
|
|
446
470
|
} from "./commands/StartMetadataModelConversionCommand";
|
|
471
|
+
import {
|
|
472
|
+
StartMetadataModelCreationCommandInput,
|
|
473
|
+
StartMetadataModelCreationCommandOutput,
|
|
474
|
+
} from "./commands/StartMetadataModelCreationCommand";
|
|
447
475
|
import {
|
|
448
476
|
StartMetadataModelExportAsScriptCommandInput,
|
|
449
477
|
StartMetadataModelExportAsScriptCommandOutput,
|
|
@@ -507,6 +535,8 @@ export type ServiceInputTypes =
|
|
|
507
535
|
| AddTagsToResourceCommandInput
|
|
508
536
|
| ApplyPendingMaintenanceActionCommandInput
|
|
509
537
|
| BatchStartRecommendationsCommandInput
|
|
538
|
+
| CancelMetadataModelConversionCommandInput
|
|
539
|
+
| CancelMetadataModelCreationCommandInput
|
|
510
540
|
| CancelReplicationTaskAssessmentRunCommandInput
|
|
511
541
|
| CreateDataMigrationCommandInput
|
|
512
542
|
| CreateDataProviderCommandInput
|
|
@@ -556,7 +586,10 @@ export type ServiceInputTypes =
|
|
|
556
586
|
| DescribeFleetAdvisorSchemasCommandInput
|
|
557
587
|
| DescribeInstanceProfilesCommandInput
|
|
558
588
|
| DescribeMetadataModelAssessmentsCommandInput
|
|
589
|
+
| DescribeMetadataModelChildrenCommandInput
|
|
590
|
+
| DescribeMetadataModelCommandInput
|
|
559
591
|
| DescribeMetadataModelConversionsCommandInput
|
|
592
|
+
| DescribeMetadataModelCreationsCommandInput
|
|
560
593
|
| DescribeMetadataModelExportsAsScriptCommandInput
|
|
561
594
|
| DescribeMetadataModelExportsToTargetCommandInput
|
|
562
595
|
| DescribeMetadataModelImportsCommandInput
|
|
@@ -579,6 +612,7 @@ export type ServiceInputTypes =
|
|
|
579
612
|
| DescribeSchemasCommandInput
|
|
580
613
|
| DescribeTableStatisticsCommandInput
|
|
581
614
|
| ExportMetadataModelAssessmentCommandInput
|
|
615
|
+
| GetTargetSelectionRulesCommandInput
|
|
582
616
|
| ImportCertificateCommandInput
|
|
583
617
|
| ListTagsForResourceCommandInput
|
|
584
618
|
| ModifyConversionConfigurationCommandInput
|
|
@@ -603,6 +637,7 @@ export type ServiceInputTypes =
|
|
|
603
637
|
| StartExtensionPackAssociationCommandInput
|
|
604
638
|
| StartMetadataModelAssessmentCommandInput
|
|
605
639
|
| StartMetadataModelConversionCommandInput
|
|
640
|
+
| StartMetadataModelCreationCommandInput
|
|
606
641
|
| StartMetadataModelExportAsScriptCommandInput
|
|
607
642
|
| StartMetadataModelExportToTargetCommandInput
|
|
608
643
|
| StartMetadataModelImportCommandInput
|
|
@@ -620,6 +655,8 @@ export type ServiceOutputTypes =
|
|
|
620
655
|
| AddTagsToResourceCommandOutput
|
|
621
656
|
| ApplyPendingMaintenanceActionCommandOutput
|
|
622
657
|
| BatchStartRecommendationsCommandOutput
|
|
658
|
+
| CancelMetadataModelConversionCommandOutput
|
|
659
|
+
| CancelMetadataModelCreationCommandOutput
|
|
623
660
|
| CancelReplicationTaskAssessmentRunCommandOutput
|
|
624
661
|
| CreateDataMigrationCommandOutput
|
|
625
662
|
| CreateDataProviderCommandOutput
|
|
@@ -669,7 +706,10 @@ export type ServiceOutputTypes =
|
|
|
669
706
|
| DescribeFleetAdvisorSchemasCommandOutput
|
|
670
707
|
| DescribeInstanceProfilesCommandOutput
|
|
671
708
|
| DescribeMetadataModelAssessmentsCommandOutput
|
|
709
|
+
| DescribeMetadataModelChildrenCommandOutput
|
|
710
|
+
| DescribeMetadataModelCommandOutput
|
|
672
711
|
| DescribeMetadataModelConversionsCommandOutput
|
|
712
|
+
| DescribeMetadataModelCreationsCommandOutput
|
|
673
713
|
| DescribeMetadataModelExportsAsScriptCommandOutput
|
|
674
714
|
| DescribeMetadataModelExportsToTargetCommandOutput
|
|
675
715
|
| DescribeMetadataModelImportsCommandOutput
|
|
@@ -692,6 +732,7 @@ export type ServiceOutputTypes =
|
|
|
692
732
|
| DescribeSchemasCommandOutput
|
|
693
733
|
| DescribeTableStatisticsCommandOutput
|
|
694
734
|
| ExportMetadataModelAssessmentCommandOutput
|
|
735
|
+
| GetTargetSelectionRulesCommandOutput
|
|
695
736
|
| ImportCertificateCommandOutput
|
|
696
737
|
| ListTagsForResourceCommandOutput
|
|
697
738
|
| ModifyConversionConfigurationCommandOutput
|
|
@@ -716,6 +757,7 @@ export type ServiceOutputTypes =
|
|
|
716
757
|
| StartExtensionPackAssociationCommandOutput
|
|
717
758
|
| StartMetadataModelAssessmentCommandOutput
|
|
718
759
|
| StartMetadataModelConversionCommandOutput
|
|
760
|
+
| StartMetadataModelCreationCommandOutput
|
|
719
761
|
| StartMetadataModelExportAsScriptCommandOutput
|
|
720
762
|
| StartMetadataModelExportToTargetCommandOutput
|
|
721
763
|
| StartMetadataModelImportCommandOutput
|
|
@@ -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
|
+
CancelMetadataModelConversionMessage,
|
|
10
|
+
CancelMetadataModelConversionResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelMetadataModelConversionCommandInput
|
|
15
|
+
extends CancelMetadataModelConversionMessage {}
|
|
16
|
+
export interface CancelMetadataModelConversionCommandOutput
|
|
17
|
+
extends CancelMetadataModelConversionResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CancelMetadataModelConversionCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CancelMetadataModelConversionCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CancelMetadataModelConversionCommandInput,
|
|
24
|
+
CancelMetadataModelConversionCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CancelMetadataModelConversionCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CancelMetadataModelConversionCommandInput,
|
|
33
|
+
CancelMetadataModelConversionCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CancelMetadataModelConversionCommand extends CancelMetadataModelConversionCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CancelMetadataModelConversionMessage;
|
|
44
|
+
output: CancelMetadataModelConversionResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CancelMetadataModelConversionCommandInput;
|
|
48
|
+
output: CancelMetadataModelConversionCommandOutput;
|
|
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
|
+
CancelMetadataModelCreationMessage,
|
|
10
|
+
CancelMetadataModelCreationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelMetadataModelCreationCommandInput
|
|
15
|
+
extends CancelMetadataModelCreationMessage {}
|
|
16
|
+
export interface CancelMetadataModelCreationCommandOutput
|
|
17
|
+
extends CancelMetadataModelCreationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CancelMetadataModelCreationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CancelMetadataModelCreationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CancelMetadataModelCreationCommandInput,
|
|
24
|
+
CancelMetadataModelCreationCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CancelMetadataModelCreationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CancelMetadataModelCreationCommandInput,
|
|
33
|
+
CancelMetadataModelCreationCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CancelMetadataModelCreationCommand extends CancelMetadataModelCreationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CancelMetadataModelCreationMessage;
|
|
44
|
+
output: CancelMetadataModelCreationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CancelMetadataModelCreationCommandInput;
|
|
48
|
+
output: CancelMetadataModelCreationCommandOutput;
|
|
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
|
+
DescribeMetadataModelChildrenMessage,
|
|
10
|
+
DescribeMetadataModelChildrenResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeMetadataModelChildrenCommandInput
|
|
15
|
+
extends DescribeMetadataModelChildrenMessage {}
|
|
16
|
+
export interface DescribeMetadataModelChildrenCommandOutput
|
|
17
|
+
extends DescribeMetadataModelChildrenResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeMetadataModelChildrenCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeMetadataModelChildrenCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeMetadataModelChildrenCommandInput,
|
|
24
|
+
DescribeMetadataModelChildrenCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeMetadataModelChildrenCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeMetadataModelChildrenCommandInput,
|
|
33
|
+
DescribeMetadataModelChildrenCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeMetadataModelChildrenCommand extends DescribeMetadataModelChildrenCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeMetadataModelChildrenMessage;
|
|
44
|
+
output: DescribeMetadataModelChildrenResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeMetadataModelChildrenCommandInput;
|
|
48
|
+
output: DescribeMetadataModelChildrenCommandOutput;
|
|
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
|
+
DescribeMetadataModelMessage,
|
|
10
|
+
DescribeMetadataModelResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeMetadataModelCommandInput
|
|
15
|
+
extends DescribeMetadataModelMessage {}
|
|
16
|
+
export interface DescribeMetadataModelCommandOutput
|
|
17
|
+
extends DescribeMetadataModelResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeMetadataModelCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeMetadataModelCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeMetadataModelCommandInput,
|
|
24
|
+
DescribeMetadataModelCommandOutput,
|
|
25
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DescribeMetadataModelCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeMetadataModelCommandInput,
|
|
33
|
+
DescribeMetadataModelCommandOutput,
|
|
34
|
+
DatabaseMigrationServiceClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeMetadataModelCommand extends DescribeMetadataModelCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeMetadataModelMessage;
|
|
44
|
+
output: DescribeMetadataModelResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeMetadataModelCommandInput;
|
|
48
|
+
output: DescribeMetadataModelCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|