@aws-sdk/client-database-migration-service 3.1097.0 → 3.1098.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.
Files changed (38) hide show
  1. package/dist-cjs/index.js +1 -1
  2. package/dist-types/commands/CancelMetadataModelConversionCommand.d.ts +24 -0
  3. package/dist-types/commands/CancelMetadataModelCreationCommand.d.ts +24 -0
  4. package/dist-types/commands/CreateDataProviderCommand.d.ts +25 -24
  5. package/dist-types/commands/CreateInstanceProfileCommand.d.ts +23 -20
  6. package/dist-types/commands/CreateMigrationProjectCommand.d.ts +36 -36
  7. package/dist-types/commands/DeleteDataProviderCommand.d.ts +18 -12
  8. package/dist-types/commands/DeleteInstanceProfileCommand.d.ts +16 -10
  9. package/dist-types/commands/DeleteMigrationProjectCommand.d.ts +25 -19
  10. package/dist-types/commands/DescribeConversionConfigurationCommand.d.ts +9 -5
  11. package/dist-types/commands/DescribeDataProvidersCommand.d.ts +20 -17
  12. package/dist-types/commands/DescribeExtensionPackAssociationsCommand.d.ts +35 -13
  13. package/dist-types/commands/DescribeInstanceProfilesCommand.d.ts +20 -14
  14. package/dist-types/commands/DescribeMetadataModelAssessmentsCommand.d.ts +41 -12
  15. package/dist-types/commands/DescribeMetadataModelChildrenCommand.d.ts +38 -0
  16. package/dist-types/commands/DescribeMetadataModelCommand.d.ts +29 -0
  17. package/dist-types/commands/DescribeMetadataModelConversionsCommand.d.ts +42 -10
  18. package/dist-types/commands/DescribeMetadataModelCreationsCommand.d.ts +55 -1
  19. package/dist-types/commands/DescribeMetadataModelExportsAsScriptCommand.d.ts +42 -10
  20. package/dist-types/commands/DescribeMetadataModelExportsToTargetCommand.d.ts +38 -10
  21. package/dist-types/commands/DescribeMetadataModelImportsCommand.d.ts +38 -10
  22. package/dist-types/commands/DescribeMigrationProjectsCommand.d.ts +26 -23
  23. package/dist-types/commands/ExportMetadataModelAssessmentCommand.d.ts +15 -10
  24. package/dist-types/commands/GetTargetSelectionRulesCommand.d.ts +20 -0
  25. package/dist-types/commands/ModifyConversionConfigurationCommand.d.ts +9 -5
  26. package/dist-types/commands/ModifyDataProviderCommand.d.ts +20 -18
  27. package/dist-types/commands/ModifyInstanceProfileCommand.d.ts +18 -18
  28. package/dist-types/commands/ModifyMigrationProjectCommand.d.ts +27 -36
  29. package/dist-types/commands/StartExtensionPackAssociationCommand.d.ts +18 -7
  30. package/dist-types/commands/StartMetadataModelAssessmentCommand.d.ts +22 -10
  31. package/dist-types/commands/StartMetadataModelConversionCommand.d.ts +56 -6
  32. package/dist-types/commands/StartMetadataModelCreationCommand.d.ts +53 -2
  33. package/dist-types/commands/StartMetadataModelExportAsScriptCommand.d.ts +22 -9
  34. package/dist-types/commands/StartMetadataModelExportToTargetCommand.d.ts +25 -6
  35. package/dist-types/commands/StartMetadataModelImportCommand.d.ts +16 -8
  36. package/dist-types/models/models_0.d.ts +339 -71
  37. package/dist-types/models/models_1.d.ts +93 -25
  38. package/package.json +6 -6
@@ -201,7 +201,7 @@ export interface StartExtensionPackAssociationMessage {
201
201
  */
202
202
  export interface StartExtensionPackAssociationResponse {
203
203
  /**
204
- * <p>The identifier for the request operation.</p>
204
+ * <p>The identifier for the installation request.</p>
205
205
  * @public
206
206
  */
207
207
  RequestIdentifier?: string | undefined;
@@ -216,7 +216,16 @@ export interface StartMetadataModelAssessmentMessage {
216
216
  */
217
217
  MigrationProjectIdentifier: string | undefined;
218
218
  /**
219
- * <p>A value that specifies the database objects to assess.</p>
219
+ * <p>A JSON string that identifies the metadata models to assess. For the selection rule format and examples, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/sc-selection-rules.html">Selection rules in DMS Schema Conversion</a>.</p>
220
+ * <p>Usage:</p>
221
+ * <ul>
222
+ * <li>
223
+ * <p>Accepts only source selection rules, where <code>server-name</code> in the object locator matches the source data provider.</p>
224
+ * </li>
225
+ * <li>
226
+ * <p>Supports <code>explicit</code>, <code>include</code>, and <code>exclude</code> rule actions.</p>
227
+ * </li>
228
+ * </ul>
220
229
  * @public
221
230
  */
222
231
  SelectionRules: string | undefined;
@@ -226,7 +235,7 @@ export interface StartMetadataModelAssessmentMessage {
226
235
  */
227
236
  export interface StartMetadataModelAssessmentResponse {
228
237
  /**
229
- * <p>The identifier for the assessment operation.</p>
238
+ * <p>The identifier for the assessment request.</p>
230
239
  * @public
231
240
  */
232
241
  RequestIdentifier?: string | undefined;
@@ -241,7 +250,16 @@ export interface StartMetadataModelConversionMessage {
241
250
  */
242
251
  MigrationProjectIdentifier: string | undefined;
243
252
  /**
244
- * <p>A value that specifies the database objects to convert.</p>
253
+ * <p>A JSON string that identifies the metadata models to convert. For the selection rule format and examples, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/sc-selection-rules.html">Selection rules in DMS Schema Conversion</a>.</p>
254
+ * <p>Usage:</p>
255
+ * <ul>
256
+ * <li>
257
+ * <p>Accepts only source selection rules, where <code>server-name</code> in the object locator matches the source data provider.</p>
258
+ * </li>
259
+ * <li>
260
+ * <p>Supports <code>explicit</code>, <code>include</code>, and <code>exclude</code> rule actions.</p>
261
+ * </li>
262
+ * </ul>
245
263
  * @public
246
264
  */
247
265
  SelectionRules: string | undefined;
@@ -251,13 +269,13 @@ export interface StartMetadataModelConversionMessage {
251
269
  */
252
270
  export interface StartMetadataModelConversionResponse {
253
271
  /**
254
- * <p>The identifier for the conversion operation.</p>
272
+ * <p>The identifier for the conversion request.</p>
255
273
  * @public
256
274
  */
257
275
  RequestIdentifier?: string | undefined;
258
276
  }
259
277
  /**
260
- * <p>The properties of the statement for metadata model creation.</p>
278
+ * <p>The properties of the SQL statement.</p>
261
279
  * @public
262
280
  */
263
281
  export interface StatementProperties {
@@ -268,7 +286,7 @@ export interface StatementProperties {
268
286
  Definition: string | undefined;
269
287
  }
270
288
  /**
271
- * <p>The properties of metadata model in JSON format. This object is a Union. Only one member of this object can be specified or returned.</p>
289
+ * <p>The properties of the metadata model.</p>
272
290
  * @public
273
291
  */
274
292
  export type MetadataModelProperties = MetadataModelProperties.StatementPropertiesMember | MetadataModelProperties.$UnknownMember;
@@ -277,7 +295,7 @@ export type MetadataModelProperties = MetadataModelProperties.StatementPropertie
277
295
  */
278
296
  export declare namespace MetadataModelProperties {
279
297
  /**
280
- * <p>The properties of the statement.</p>
298
+ * <p>The properties of the SQL statement.</p>
281
299
  * @public
282
300
  */
283
301
  interface StatementPropertiesMember {
@@ -310,17 +328,32 @@ export interface StartMetadataModelCreationMessage {
310
328
  */
311
329
  MigrationProjectIdentifier: string | undefined;
312
330
  /**
313
- * <p>The JSON string that specifies the location where the metadata model will be created. Selection rules must specify a single schema. For more information, see Selection Rules in the DMS User Guide.</p>
331
+ * <p>A JSON string that identifies the source schema for the metadata model. For the
332
+ * selection rule format and examples, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/sc-selection-rules.html">Selection rules in DMS Schema
333
+ * Conversion</a>.</p>
334
+ * <p>Usage:</p>
335
+ * <ul>
336
+ * <li>
337
+ * <p>Accepts only source selection rules, where <code>server-name</code> in the
338
+ * object locator matches the source data provider.</p>
339
+ * </li>
340
+ * <li>
341
+ * <p>Supports only <code>explicit</code> rule actions.</p>
342
+ * </li>
343
+ * <li>
344
+ * <p>Exactly one rule is allowed.</p>
345
+ * </li>
346
+ * </ul>
314
347
  * @public
315
348
  */
316
349
  SelectionRules: string | undefined;
317
350
  /**
318
- * <p>The name of the metadata model.</p>
351
+ * <p>The name for the metadata model to use in subsequent operations.</p>
319
352
  * @public
320
353
  */
321
354
  MetadataModelName: string | undefined;
322
355
  /**
323
- * <p>The properties of metadata model in JSON format. This object is a Union. Only one member of this object can be specified or returned.</p>
356
+ * <p>The properties of the metadata model.</p>
324
357
  * @public
325
358
  */
326
359
  Properties: MetadataModelProperties | undefined;
@@ -330,7 +363,7 @@ export interface StartMetadataModelCreationMessage {
330
363
  */
331
364
  export interface StartMetadataModelCreationResponse {
332
365
  /**
333
- * <p>The identifier for the metadata model creation operation.</p>
366
+ * <p>The identifier for the creation request.</p>
334
367
  * @public
335
368
  */
336
369
  RequestIdentifier?: string | undefined;
@@ -345,17 +378,27 @@ export interface StartMetadataModelExportAsScriptMessage {
345
378
  */
346
379
  MigrationProjectIdentifier: string | undefined;
347
380
  /**
348
- * <p>A value that specifies the database objects to export.</p>
381
+ * <p>A JSON string that identifies the metadata models to export as a SQL script. For the selection rule format and examples, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/sc-selection-rules.html">Selection rules in DMS Schema Conversion</a>.</p>
382
+ * <p>Usage:</p>
383
+ * <ul>
384
+ * <li>
385
+ * <p>Accepts source or target selection rules depending on the <code>Origin</code> parameter. The <code>server-name</code> in the object locator must match the corresponding data provider.</p>
386
+ * </li>
387
+ * <li>
388
+ * <p>Supports <code>explicit</code>, <code>include</code>, and <code>exclude</code> rule actions.</p>
389
+ * </li>
390
+ * </ul>
349
391
  * @public
350
392
  */
351
393
  SelectionRules: string | undefined;
352
394
  /**
353
- * <p>Whether to export the metadata model from the source or the target.</p>
395
+ * <p>Specifies the metadata tree to export from.</p>
354
396
  * @public
355
397
  */
356
398
  Origin: OriginTypeValue | undefined;
357
399
  /**
358
- * <p>The name of the model file to create in the Amazon S3 bucket.</p>
400
+ * <p>The name for the exported file. When you omit this parameter, the service generates
401
+ * a name from the data provider engine name and an export timestamp.</p>
359
402
  * @public
360
403
  */
361
404
  FileName?: string | undefined;
@@ -365,7 +408,7 @@ export interface StartMetadataModelExportAsScriptMessage {
365
408
  */
366
409
  export interface StartMetadataModelExportAsScriptResponse {
367
410
  /**
368
- * <p>The identifier for the export operation.</p>
411
+ * <p>The identifier for the export request.</p>
369
412
  * @public
370
413
  */
371
414
  RequestIdentifier?: string | undefined;
@@ -380,14 +423,22 @@ export interface StartMetadataModelExportToTargetMessage {
380
423
  */
381
424
  MigrationProjectIdentifier: string | undefined;
382
425
  /**
383
- * <p>A value that specifies the database objects to export.</p>
426
+ * <p>A JSON string that identifies the metadata models to export to the target database. For the selection rule format and examples, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/sc-selection-rules.html">Selection rules in DMS Schema Conversion</a>.</p>
427
+ * <p>Usage:</p>
428
+ * <ul>
429
+ * <li>
430
+ * <p>Accepts only target selection rules, where <code>server-name</code> in the object locator matches the target data provider.</p>
431
+ * </li>
432
+ * <li>
433
+ * <p>Supports <code>explicit</code>, <code>include</code>, and <code>exclude</code> rule actions.</p>
434
+ * </li>
435
+ * </ul>
384
436
  * @public
385
437
  */
386
438
  SelectionRules: string | undefined;
387
439
  /**
388
- * <p>Whether to overwrite the migration project extension pack. An extension pack is an add-on module
389
- * that emulates functions present in a source database that are required when converting objects
390
- * to the target database.</p>
440
+ * <p>Specifies whether to overwrite the extension pack if one already exists on the
441
+ * target database. The default value is <code>true</code>.</p>
391
442
  * @public
392
443
  */
393
444
  OverwriteExtensionPack?: boolean | undefined;
@@ -397,7 +448,7 @@ export interface StartMetadataModelExportToTargetMessage {
397
448
  */
398
449
  export interface StartMetadataModelExportToTargetResponse {
399
450
  /**
400
- * <p>The identifier for the export operation.</p>
451
+ * <p>The identifier for the export request.</p>
401
452
  * @public
402
453
  */
403
454
  RequestIdentifier?: string | undefined;
@@ -412,17 +463,34 @@ export interface StartMetadataModelImportMessage {
412
463
  */
413
464
  MigrationProjectIdentifier: string | undefined;
414
465
  /**
415
- * <p>A value that specifies the database objects to import.</p>
466
+ * <p>A JSON string that identifies the metadata models to import from the data provider. For the selection rule format and examples, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/sc-selection-rules.html">Selection rules in DMS Schema Conversion</a>.</p>
467
+ * <p>Usage:</p>
468
+ * <ul>
469
+ * <li>
470
+ * <p>Accepts source or target selection rules depending on the <code>Origin</code> parameter. The <code>server-name</code> in the object locator must match the corresponding data provider.</p>
471
+ * </li>
472
+ * <li>
473
+ * <p>Supports <code>explicit</code>, <code>include</code>, and <code>exclude</code> rule actions.</p>
474
+ * </li>
475
+ * </ul>
416
476
  * @public
417
477
  */
418
478
  SelectionRules: string | undefined;
419
479
  /**
420
- * <p>Whether to load metadata to the source or target database.</p>
480
+ * <p>Specifies the metadata tree to import into.</p>
481
+ * <note>
482
+ * <p>You cannot import from a virtual target data provider.</p>
483
+ * </note>
421
484
  * @public
422
485
  */
423
486
  Origin: OriginTypeValue | undefined;
424
487
  /**
425
- * <p>If <code>true</code>, DMS loads metadata for the specified objects from the source database.</p>
488
+ * <p>Specifies whether to refresh the selected metadata models from the data
489
+ * provider.</p>
490
+ * <p>When <code>true</code>, the import reloads the selected metadata models with
491
+ * current definitions and removes their existing subtree.</p>
492
+ * <p>When <code>false</code> (default), the import loads the full subtree that has not
493
+ * yet been loaded into the metadata tree.</p>
426
494
  * @public
427
495
  */
428
496
  Refresh?: boolean | undefined;
@@ -432,7 +500,7 @@ export interface StartMetadataModelImportMessage {
432
500
  */
433
501
  export interface StartMetadataModelImportResponse {
434
502
  /**
435
- * <p>The identifier for the import operation.</p>
503
+ * <p>The identifier for the import request.</p>
436
504
  * @public
437
505
  */
438
506
  RequestIdentifier?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-database-migration-service",
3
- "version": "3.1097.0",
3
+ "version": "3.1098.0",
4
4
  "description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native",
5
5
  "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-database-migration-service",
6
6
  "license": "Apache-2.0",
@@ -48,12 +48,12 @@
48
48
  "test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
49
49
  },
50
50
  "dependencies": {
51
- "@aws-sdk/core": "^3.977.2",
52
- "@aws-sdk/credential-provider-node": "^3.972.74",
51
+ "@aws-sdk/core": "^3.977.3",
52
+ "@aws-sdk/credential-provider-node": "^3.972.75",
53
53
  "@aws-sdk/types": "^3.974.2",
54
- "@smithy/core": "^3.29.8",
55
- "@smithy/fetch-http-handler": "^5.6.10",
56
- "@smithy/node-http-handler": "^4.9.10",
54
+ "@smithy/core": "^3.31.1",
55
+ "@smithy/fetch-http-handler": "^5.6.13",
56
+ "@smithy/node-http-handler": "^4.9.13",
57
57
  "@smithy/types": "^4.16.1",
58
58
  "tslib": "^2.6.2"
59
59
  },