@aws-sdk/client-database-migration-service 3.932.0 → 3.933.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/dist-cjs/index.js +26 -7
- package/dist-es/schemas/schemas_0.js +26 -7
- package/dist-types/commands/CancelMetadataModelConversionCommand.d.ts +10 -0
- package/dist-types/commands/CancelMetadataModelCreationCommand.d.ts +10 -0
- package/dist-types/commands/CreateDataProviderCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataProviderCommand.d.ts +8 -0
- package/dist-types/commands/DescribeDataProvidersCommand.d.ts +8 -0
- package/dist-types/commands/DescribeExtensionPackAssociationsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeMetadataModelAssessmentsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeMetadataModelConversionsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeMetadataModelCreationsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeMetadataModelExportsAsScriptCommand.d.ts +10 -0
- package/dist-types/commands/DescribeMetadataModelExportsToTargetCommand.d.ts +10 -0
- package/dist-types/commands/DescribeMetadataModelImportsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeReplicationInstanceTaskLogsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReplicationsCommand.d.ts +1 -2
- package/dist-types/commands/ModifyDataProviderCommand.d.ts +16 -0
- package/dist-types/models/models_0.d.ts +155 -179
- package/dist-types/models/models_1.d.ts +178 -2
- package/dist-types/schemas/schemas_0.d.ts +3 -0
- package/dist-types/ts3.4/commands/DescribeReplicationInstanceTaskLogsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/DescribeReplicationsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +47 -23
- package/dist-types/ts3.4/models/models_1.d.ts +26 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +3 -0
- package/package.json +3 -3
|
@@ -407,6 +407,86 @@ export interface ExportSqlDetails {
|
|
|
407
407
|
*/
|
|
408
408
|
ObjectURL?: string | undefined;
|
|
409
409
|
}
|
|
410
|
+
/**
|
|
411
|
+
* <p>The database object that the schema conversion operation currently uses.</p>
|
|
412
|
+
* @public
|
|
413
|
+
*/
|
|
414
|
+
export interface ProcessedObject {
|
|
415
|
+
/**
|
|
416
|
+
* <p>The name of the database object.</p>
|
|
417
|
+
* @public
|
|
418
|
+
*/
|
|
419
|
+
Name?: string | undefined;
|
|
420
|
+
/**
|
|
421
|
+
* <p>The type of the database object. For example, a table, view, procedure, and so on.</p>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
Type?: string | undefined;
|
|
425
|
+
/**
|
|
426
|
+
* <p>The type of the data provider. This parameter can store one of the following values:
|
|
427
|
+
* <code>"SOURCE"</code> or <code>"TARGET"</code>.</p>
|
|
428
|
+
* @public
|
|
429
|
+
*/
|
|
430
|
+
EndpointType?: string | undefined;
|
|
431
|
+
}
|
|
432
|
+
/**
|
|
433
|
+
* <p>Provides information about the progress of the schema conversion operation.</p>
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
export interface Progress {
|
|
437
|
+
/**
|
|
438
|
+
* <p>The percent complete for the current step of the schema conversion operation.</p>
|
|
439
|
+
* @public
|
|
440
|
+
*/
|
|
441
|
+
ProgressPercent?: number | undefined;
|
|
442
|
+
/**
|
|
443
|
+
* <p>The number of objects in this schema conversion operation.</p>
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
446
|
+
TotalObjects?: number | undefined;
|
|
447
|
+
/**
|
|
448
|
+
* <p>The step of the schema conversion operation. This parameter can store one of the following values:</p>
|
|
449
|
+
* <ul>
|
|
450
|
+
* <li>
|
|
451
|
+
* <p>
|
|
452
|
+
* <code>IN_PROGRESS</code> – The operation is running.</p>
|
|
453
|
+
* </li>
|
|
454
|
+
* <li>
|
|
455
|
+
* <p>
|
|
456
|
+
* <code>LOADING_METADATA</code> – Loads metadata from the source database.</p>
|
|
457
|
+
* </li>
|
|
458
|
+
* <li>
|
|
459
|
+
* <p>
|
|
460
|
+
* <code>COUNTING_OBJECTS</code> – Determines the number of objects involved
|
|
461
|
+
* in the operation.</p>
|
|
462
|
+
* </li>
|
|
463
|
+
* <li>
|
|
464
|
+
* <p>
|
|
465
|
+
* <code>ANALYZING</code> – Analyzes the source database objects.</p>
|
|
466
|
+
* </li>
|
|
467
|
+
* <li>
|
|
468
|
+
* <p>
|
|
469
|
+
* <code>CONVERTING</code> – Converts the source database objects to a format compatible
|
|
470
|
+
* with the target database.</p>
|
|
471
|
+
* </li>
|
|
472
|
+
* <li>
|
|
473
|
+
* <p>
|
|
474
|
+
* <code>APPLYING</code> – Applies the converted code to the target database.</p>
|
|
475
|
+
* </li>
|
|
476
|
+
* <li>
|
|
477
|
+
* <p>
|
|
478
|
+
* <code>FINISHED</code> – The operation completed successfully.</p>
|
|
479
|
+
* </li>
|
|
480
|
+
* </ul>
|
|
481
|
+
* @public
|
|
482
|
+
*/
|
|
483
|
+
ProgressStep?: string | undefined;
|
|
484
|
+
/**
|
|
485
|
+
* <p>The name of the database object that the schema conversion operation currently uses.</p>
|
|
486
|
+
* @public
|
|
487
|
+
*/
|
|
488
|
+
ProcessedObject?: ProcessedObject | undefined;
|
|
489
|
+
}
|
|
410
490
|
/**
|
|
411
491
|
* <p>Provides information about a schema conversion action.</p>
|
|
412
492
|
* @public
|
|
@@ -437,6 +517,11 @@ export interface SchemaConversionRequest {
|
|
|
437
517
|
* @public
|
|
438
518
|
*/
|
|
439
519
|
ExportSqlDetails?: ExportSqlDetails | undefined;
|
|
520
|
+
/**
|
|
521
|
+
* <p>Provides information about the progress of the schema conversion operation.</p>
|
|
522
|
+
* @public
|
|
523
|
+
*/
|
|
524
|
+
Progress?: Progress | undefined;
|
|
440
525
|
}
|
|
441
526
|
/**
|
|
442
527
|
* @public
|
|
@@ -1533,11 +1618,48 @@ export interface RedshiftDataProviderSettings {
|
|
|
1533
1618
|
*/
|
|
1534
1619
|
S3AccessRoleArn?: string | undefined;
|
|
1535
1620
|
}
|
|
1621
|
+
/**
|
|
1622
|
+
* <p>Provides information that defines an SAP ASE data provider.</p>
|
|
1623
|
+
* @public
|
|
1624
|
+
*/
|
|
1625
|
+
export interface SybaseAseDataProviderSettings {
|
|
1626
|
+
/**
|
|
1627
|
+
* <p>The name of the SAP ASE server.</p>
|
|
1628
|
+
* @public
|
|
1629
|
+
*/
|
|
1630
|
+
ServerName?: string | undefined;
|
|
1631
|
+
/**
|
|
1632
|
+
* <p>The port value for the SAP ASE data provider.</p>
|
|
1633
|
+
* @public
|
|
1634
|
+
*/
|
|
1635
|
+
Port?: number | undefined;
|
|
1636
|
+
/**
|
|
1637
|
+
* <p>The database name on the SAP ASE data provider.</p>
|
|
1638
|
+
* @public
|
|
1639
|
+
*/
|
|
1640
|
+
DatabaseName?: string | undefined;
|
|
1641
|
+
/**
|
|
1642
|
+
* <p>The SSL mode used to connect to the SAP ASE data provider.
|
|
1643
|
+
* The default value is <code>none</code>.</p>
|
|
1644
|
+
* @public
|
|
1645
|
+
*/
|
|
1646
|
+
SslMode?: DmsSslModeValue | undefined;
|
|
1647
|
+
/**
|
|
1648
|
+
* <p>Specifies whether to encrypt the password when connecting to the Sybase ASE database. When set to true, the connection password is encrypted during transmission. Default is true.</p>
|
|
1649
|
+
* @public
|
|
1650
|
+
*/
|
|
1651
|
+
EncryptPassword?: boolean | undefined;
|
|
1652
|
+
/**
|
|
1653
|
+
* <p>The Amazon Resource Name (ARN) of the certificate used for SSL connection.</p>
|
|
1654
|
+
* @public
|
|
1655
|
+
*/
|
|
1656
|
+
CertificateArn?: string | undefined;
|
|
1657
|
+
}
|
|
1536
1658
|
/**
|
|
1537
1659
|
* <p>Provides information that defines a data provider.</p>
|
|
1538
1660
|
* @public
|
|
1539
1661
|
*/
|
|
1540
|
-
export type DataProviderSettings = DataProviderSettings.DocDbSettingsMember | DataProviderSettings.IbmDb2LuwSettingsMember | DataProviderSettings.IbmDb2zOsSettingsMember | DataProviderSettings.MariaDbSettingsMember | DataProviderSettings.MicrosoftSqlServerSettingsMember | DataProviderSettings.MongoDbSettingsMember | DataProviderSettings.MySqlSettingsMember | DataProviderSettings.OracleSettingsMember | DataProviderSettings.PostgreSqlSettingsMember | DataProviderSettings.RedshiftSettingsMember | DataProviderSettings.$UnknownMember;
|
|
1662
|
+
export type DataProviderSettings = DataProviderSettings.DocDbSettingsMember | DataProviderSettings.IbmDb2LuwSettingsMember | DataProviderSettings.IbmDb2zOsSettingsMember | DataProviderSettings.MariaDbSettingsMember | DataProviderSettings.MicrosoftSqlServerSettingsMember | DataProviderSettings.MongoDbSettingsMember | DataProviderSettings.MySqlSettingsMember | DataProviderSettings.OracleSettingsMember | DataProviderSettings.PostgreSqlSettingsMember | DataProviderSettings.RedshiftSettingsMember | DataProviderSettings.SybaseAseSettingsMember | DataProviderSettings.$UnknownMember;
|
|
1541
1663
|
/**
|
|
1542
1664
|
* @public
|
|
1543
1665
|
*/
|
|
@@ -1551,6 +1673,7 @@ export declare namespace DataProviderSettings {
|
|
|
1551
1673
|
PostgreSqlSettings?: never;
|
|
1552
1674
|
MySqlSettings?: never;
|
|
1553
1675
|
OracleSettings?: never;
|
|
1676
|
+
SybaseAseSettings?: never;
|
|
1554
1677
|
MicrosoftSqlServerSettings?: never;
|
|
1555
1678
|
DocDbSettings?: never;
|
|
1556
1679
|
MariaDbSettings?: never;
|
|
@@ -1568,6 +1691,7 @@ export declare namespace DataProviderSettings {
|
|
|
1568
1691
|
PostgreSqlSettings: PostgreSqlDataProviderSettings;
|
|
1569
1692
|
MySqlSettings?: never;
|
|
1570
1693
|
OracleSettings?: never;
|
|
1694
|
+
SybaseAseSettings?: never;
|
|
1571
1695
|
MicrosoftSqlServerSettings?: never;
|
|
1572
1696
|
DocDbSettings?: never;
|
|
1573
1697
|
MariaDbSettings?: never;
|
|
@@ -1585,6 +1709,7 @@ export declare namespace DataProviderSettings {
|
|
|
1585
1709
|
PostgreSqlSettings?: never;
|
|
1586
1710
|
MySqlSettings: MySqlDataProviderSettings;
|
|
1587
1711
|
OracleSettings?: never;
|
|
1712
|
+
SybaseAseSettings?: never;
|
|
1588
1713
|
MicrosoftSqlServerSettings?: never;
|
|
1589
1714
|
DocDbSettings?: never;
|
|
1590
1715
|
MariaDbSettings?: never;
|
|
@@ -1602,6 +1727,25 @@ export declare namespace DataProviderSettings {
|
|
|
1602
1727
|
PostgreSqlSettings?: never;
|
|
1603
1728
|
MySqlSettings?: never;
|
|
1604
1729
|
OracleSettings: OracleDataProviderSettings;
|
|
1730
|
+
SybaseAseSettings?: never;
|
|
1731
|
+
MicrosoftSqlServerSettings?: never;
|
|
1732
|
+
DocDbSettings?: never;
|
|
1733
|
+
MariaDbSettings?: never;
|
|
1734
|
+
IbmDb2LuwSettings?: never;
|
|
1735
|
+
IbmDb2zOsSettings?: never;
|
|
1736
|
+
MongoDbSettings?: never;
|
|
1737
|
+
$unknown?: never;
|
|
1738
|
+
}
|
|
1739
|
+
/**
|
|
1740
|
+
* <p>Provides information that defines an SAP ASE data provider.</p>
|
|
1741
|
+
* @public
|
|
1742
|
+
*/
|
|
1743
|
+
interface SybaseAseSettingsMember {
|
|
1744
|
+
RedshiftSettings?: never;
|
|
1745
|
+
PostgreSqlSettings?: never;
|
|
1746
|
+
MySqlSettings?: never;
|
|
1747
|
+
OracleSettings?: never;
|
|
1748
|
+
SybaseAseSettings: SybaseAseDataProviderSettings;
|
|
1605
1749
|
MicrosoftSqlServerSettings?: never;
|
|
1606
1750
|
DocDbSettings?: never;
|
|
1607
1751
|
MariaDbSettings?: never;
|
|
@@ -1619,6 +1763,7 @@ export declare namespace DataProviderSettings {
|
|
|
1619
1763
|
PostgreSqlSettings?: never;
|
|
1620
1764
|
MySqlSettings?: never;
|
|
1621
1765
|
OracleSettings?: never;
|
|
1766
|
+
SybaseAseSettings?: never;
|
|
1622
1767
|
MicrosoftSqlServerSettings: MicrosoftSqlServerDataProviderSettings;
|
|
1623
1768
|
DocDbSettings?: never;
|
|
1624
1769
|
MariaDbSettings?: never;
|
|
@@ -1636,6 +1781,7 @@ export declare namespace DataProviderSettings {
|
|
|
1636
1781
|
PostgreSqlSettings?: never;
|
|
1637
1782
|
MySqlSettings?: never;
|
|
1638
1783
|
OracleSettings?: never;
|
|
1784
|
+
SybaseAseSettings?: never;
|
|
1639
1785
|
MicrosoftSqlServerSettings?: never;
|
|
1640
1786
|
DocDbSettings: DocDbDataProviderSettings;
|
|
1641
1787
|
MariaDbSettings?: never;
|
|
@@ -1653,6 +1799,7 @@ export declare namespace DataProviderSettings {
|
|
|
1653
1799
|
PostgreSqlSettings?: never;
|
|
1654
1800
|
MySqlSettings?: never;
|
|
1655
1801
|
OracleSettings?: never;
|
|
1802
|
+
SybaseAseSettings?: never;
|
|
1656
1803
|
MicrosoftSqlServerSettings?: never;
|
|
1657
1804
|
DocDbSettings?: never;
|
|
1658
1805
|
MariaDbSettings: MariaDbDataProviderSettings;
|
|
@@ -1670,6 +1817,7 @@ export declare namespace DataProviderSettings {
|
|
|
1670
1817
|
PostgreSqlSettings?: never;
|
|
1671
1818
|
MySqlSettings?: never;
|
|
1672
1819
|
OracleSettings?: never;
|
|
1820
|
+
SybaseAseSettings?: never;
|
|
1673
1821
|
MicrosoftSqlServerSettings?: never;
|
|
1674
1822
|
DocDbSettings?: never;
|
|
1675
1823
|
MariaDbSettings?: never;
|
|
@@ -1687,6 +1835,7 @@ export declare namespace DataProviderSettings {
|
|
|
1687
1835
|
PostgreSqlSettings?: never;
|
|
1688
1836
|
MySqlSettings?: never;
|
|
1689
1837
|
OracleSettings?: never;
|
|
1838
|
+
SybaseAseSettings?: never;
|
|
1690
1839
|
MicrosoftSqlServerSettings?: never;
|
|
1691
1840
|
DocDbSettings?: never;
|
|
1692
1841
|
MariaDbSettings?: never;
|
|
@@ -1704,6 +1853,7 @@ export declare namespace DataProviderSettings {
|
|
|
1704
1853
|
PostgreSqlSettings?: never;
|
|
1705
1854
|
MySqlSettings?: never;
|
|
1706
1855
|
OracleSettings?: never;
|
|
1856
|
+
SybaseAseSettings?: never;
|
|
1707
1857
|
MicrosoftSqlServerSettings?: never;
|
|
1708
1858
|
DocDbSettings?: never;
|
|
1709
1859
|
MariaDbSettings?: never;
|
|
@@ -1720,6 +1870,7 @@ export declare namespace DataProviderSettings {
|
|
|
1720
1870
|
PostgreSqlSettings?: never;
|
|
1721
1871
|
MySqlSettings?: never;
|
|
1722
1872
|
OracleSettings?: never;
|
|
1873
|
+
SybaseAseSettings?: never;
|
|
1723
1874
|
MicrosoftSqlServerSettings?: never;
|
|
1724
1875
|
DocDbSettings?: never;
|
|
1725
1876
|
MariaDbSettings?: never;
|
|
@@ -1737,6 +1888,7 @@ export declare namespace DataProviderSettings {
|
|
|
1737
1888
|
PostgreSqlSettings: (value: PostgreSqlDataProviderSettings) => T;
|
|
1738
1889
|
MySqlSettings: (value: MySqlDataProviderSettings) => T;
|
|
1739
1890
|
OracleSettings: (value: OracleDataProviderSettings) => T;
|
|
1891
|
+
SybaseAseSettings: (value: SybaseAseDataProviderSettings) => T;
|
|
1740
1892
|
MicrosoftSqlServerSettings: (value: MicrosoftSqlServerDataProviderSettings) => T;
|
|
1741
1893
|
DocDbSettings: (value: DocDbDataProviderSettings) => T;
|
|
1742
1894
|
MariaDbSettings: (value: MariaDbDataProviderSettings) => T;
|
|
@@ -1763,7 +1915,7 @@ export interface CreateDataProviderMessage {
|
|
|
1763
1915
|
/**
|
|
1764
1916
|
* <p>The type of database engine for the data provider. Valid values include <code>"aurora"</code>,
|
|
1765
1917
|
* <code>"aurora-postgresql"</code>, <code>"mysql"</code>, <code>"oracle"</code>, <code>"postgres"</code>,
|
|
1766
|
-
* <code>"sqlserver"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code> and <code>
|
|
1918
|
+
* <code>"sqlserver"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code>, <code>docdb</code>, and <code>sybase</code>. A value of <code>"aurora"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>
|
|
1767
1919
|
* @public
|
|
1768
1920
|
*/
|
|
1769
1921
|
Engine: string | undefined;
|
|
@@ -1813,7 +1965,7 @@ export interface DataProvider {
|
|
|
1813
1965
|
/**
|
|
1814
1966
|
* <p>The type of database engine for the data provider. Valid values include <code>"aurora"</code>,
|
|
1815
1967
|
* <code>"aurora-postgresql"</code>, <code>"mysql"</code>, <code>"oracle"</code>, <code>"postgres"</code>,
|
|
1816
|
-
* <code>"sqlserver"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code> and <code>
|
|
1968
|
+
* <code>"sqlserver"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code>, <code>docdb</code>, and <code>sybase</code>. A value of <code>"aurora"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>
|
|
1817
1969
|
* @public
|
|
1818
1970
|
*/
|
|
1819
1971
|
Engine?: string | undefined;
|
|
@@ -10882,179 +11034,3 @@ export interface ReplicationInstanceTaskLog {
|
|
|
10882
11034
|
*/
|
|
10883
11035
|
ReplicationInstanceTaskLogSize?: number | undefined;
|
|
10884
11036
|
}
|
|
10885
|
-
/**
|
|
10886
|
-
* @public
|
|
10887
|
-
*/
|
|
10888
|
-
export interface DescribeReplicationInstanceTaskLogsResponse {
|
|
10889
|
-
/**
|
|
10890
|
-
* <p>The Amazon Resource Name (ARN) of the replication instance.</p>
|
|
10891
|
-
* @public
|
|
10892
|
-
*/
|
|
10893
|
-
ReplicationInstanceArn?: string | undefined;
|
|
10894
|
-
/**
|
|
10895
|
-
* <p>An array of replication task log metadata. Each member of the array contains the
|
|
10896
|
-
* replication task name, ARN, and task log size (in bytes). </p>
|
|
10897
|
-
* @public
|
|
10898
|
-
*/
|
|
10899
|
-
ReplicationInstanceTaskLogs?: ReplicationInstanceTaskLog[] | undefined;
|
|
10900
|
-
/**
|
|
10901
|
-
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
10902
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
10903
|
-
* by <code>MaxRecords</code>.</p>
|
|
10904
|
-
* @public
|
|
10905
|
-
*/
|
|
10906
|
-
Marker?: string | undefined;
|
|
10907
|
-
}
|
|
10908
|
-
/**
|
|
10909
|
-
* <p></p>
|
|
10910
|
-
* @public
|
|
10911
|
-
*/
|
|
10912
|
-
export interface DescribeReplicationsMessage {
|
|
10913
|
-
/**
|
|
10914
|
-
* <p>Filters applied to the replications.</p>
|
|
10915
|
-
* <p> Valid filter names: <code>replication-config-arn</code> | <code>replication-config-id</code>
|
|
10916
|
-
* </p>
|
|
10917
|
-
* @public
|
|
10918
|
-
*/
|
|
10919
|
-
Filters?: Filter[] | undefined;
|
|
10920
|
-
/**
|
|
10921
|
-
* <p>The maximum number of records to include in the response. If more records exist than the
|
|
10922
|
-
* specified <code>MaxRecords</code> value, a pagination token called a marker is included in
|
|
10923
|
-
* the response so that the remaining results can be retrieved. </p>
|
|
10924
|
-
* @public
|
|
10925
|
-
*/
|
|
10926
|
-
MaxRecords?: number | undefined;
|
|
10927
|
-
/**
|
|
10928
|
-
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
10929
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
10930
|
-
* by <code>MaxRecords</code>. </p>
|
|
10931
|
-
* @public
|
|
10932
|
-
*/
|
|
10933
|
-
Marker?: string | undefined;
|
|
10934
|
-
}
|
|
10935
|
-
/**
|
|
10936
|
-
* <p>The results returned in <code>describe-replications</code> to display the results of the
|
|
10937
|
-
* premigration assessment from the replication configuration.</p>
|
|
10938
|
-
* @public
|
|
10939
|
-
*/
|
|
10940
|
-
export interface PremigrationAssessmentStatus {
|
|
10941
|
-
/**
|
|
10942
|
-
* <p>The Amazon Resource Name (ARN) of this assessment run.</p>
|
|
10943
|
-
* @public
|
|
10944
|
-
*/
|
|
10945
|
-
PremigrationAssessmentRunArn?: string | undefined;
|
|
10946
|
-
/**
|
|
10947
|
-
* <p>A configurable setting you can set to <code>true</code> (the defualt setting) or
|
|
10948
|
-
* <code>false</code>. Use this setting to to stop the replication from starting
|
|
10949
|
-
* automatically if the assessment fails. This can help you evaluate the issue that is
|
|
10950
|
-
* preventing the replication from running successfully.</p>
|
|
10951
|
-
* @public
|
|
10952
|
-
*/
|
|
10953
|
-
FailOnAssessmentFailure?: boolean | undefined;
|
|
10954
|
-
/**
|
|
10955
|
-
* <p>This describes the assessment run status. The status can be one of the following
|
|
10956
|
-
* values:</p>
|
|
10957
|
-
* <ul>
|
|
10958
|
-
* <li>
|
|
10959
|
-
* <p>
|
|
10960
|
-
* <code>cancelling</code>: The assessment run was canceled.</p>
|
|
10961
|
-
* </li>
|
|
10962
|
-
* <li>
|
|
10963
|
-
* <p>
|
|
10964
|
-
* <code>deleting</code>: The assessment run was deleted.</p>
|
|
10965
|
-
* </li>
|
|
10966
|
-
* <li>
|
|
10967
|
-
* <p>
|
|
10968
|
-
* <code>failed</code>: At least one individual assessment completed with a failed
|
|
10969
|
-
* status. </p>
|
|
10970
|
-
* </li>
|
|
10971
|
-
* <li>
|
|
10972
|
-
* <p>
|
|
10973
|
-
* <code>error-provisioning</code>: An internal error occurred while resources were
|
|
10974
|
-
* provisioned (during the <code>provisioning</code> status).</p>
|
|
10975
|
-
* </li>
|
|
10976
|
-
* <li>
|
|
10977
|
-
* <p>
|
|
10978
|
-
* <code>error-executing</code> An internal error occurred while individual
|
|
10979
|
-
* assessments ran (during the <code>running</code> status).</p>
|
|
10980
|
-
* </li>
|
|
10981
|
-
* <li>
|
|
10982
|
-
* <p>
|
|
10983
|
-
* <code>invalid state</code>: The assessment run is in an unknown state. </p>
|
|
10984
|
-
* </li>
|
|
10985
|
-
* <li>
|
|
10986
|
-
* <p>
|
|
10987
|
-
* <code>passed</code>: All individual assessments have completed and none have a
|
|
10988
|
-
* failed status.</p>
|
|
10989
|
-
* </li>
|
|
10990
|
-
* <li>
|
|
10991
|
-
* <p>
|
|
10992
|
-
* <code>provisioning</code>: The resources required to run individual assessments
|
|
10993
|
-
* are being provisioned. </p>
|
|
10994
|
-
* </li>
|
|
10995
|
-
* <li>
|
|
10996
|
-
* <p>
|
|
10997
|
-
* <code>running</code>: Individual assessments are being run. </p>
|
|
10998
|
-
* </li>
|
|
10999
|
-
* <li>
|
|
11000
|
-
* <p>
|
|
11001
|
-
* <code>starting</code>: The assessment run is starting, but resources are not yet
|
|
11002
|
-
* being provisioned for individual assessments. </p>
|
|
11003
|
-
* </li>
|
|
11004
|
-
* <li>
|
|
11005
|
-
* <p>
|
|
11006
|
-
* <code>warning</code>: At least one individual assessment completed with a warning
|
|
11007
|
-
* status. </p>
|
|
11008
|
-
* </li>
|
|
11009
|
-
* </ul>
|
|
11010
|
-
* @public
|
|
11011
|
-
*/
|
|
11012
|
-
Status?: string | undefined;
|
|
11013
|
-
/**
|
|
11014
|
-
* <p>The date which the assessment run was created.</p>
|
|
11015
|
-
* @public
|
|
11016
|
-
*/
|
|
11017
|
-
PremigrationAssessmentRunCreationDate?: Date | undefined;
|
|
11018
|
-
/**
|
|
11019
|
-
* <p>The progress values reported by the <code>AssessmentProgress</code> response
|
|
11020
|
-
* element.</p>
|
|
11021
|
-
* @public
|
|
11022
|
-
*/
|
|
11023
|
-
AssessmentProgress?: ReplicationTaskAssessmentRunProgress | undefined;
|
|
11024
|
-
/**
|
|
11025
|
-
* <p>The last message generated by an individual assessment failure.</p>
|
|
11026
|
-
* @public
|
|
11027
|
-
*/
|
|
11028
|
-
LastFailureMessage?: string | undefined;
|
|
11029
|
-
/**
|
|
11030
|
-
* <p>The Amazon S3 bucket that Database Migration Service Serverless created to store the results of this
|
|
11031
|
-
* assessment run.</p>
|
|
11032
|
-
* @public
|
|
11033
|
-
*/
|
|
11034
|
-
ResultLocationBucket?: string | undefined;
|
|
11035
|
-
/**
|
|
11036
|
-
* <p>The folder within an Amazon S3 bucket where you want Database Migration Service to store the results of
|
|
11037
|
-
* this assessment run.</p>
|
|
11038
|
-
* @public
|
|
11039
|
-
*/
|
|
11040
|
-
ResultLocationFolder?: string | undefined;
|
|
11041
|
-
/**
|
|
11042
|
-
* <p>The supported values are <code>SSE_KMS</code> and <code>SSE_S3</code>. If these values
|
|
11043
|
-
* are not provided, then the files are not encrypted at rest. For more information, see
|
|
11044
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.KMSKeys">Creating Amazon Web Services KMS
|
|
11045
|
-
* keys to encrypt Amazon S3 target objects</a>.</p>
|
|
11046
|
-
* @public
|
|
11047
|
-
*/
|
|
11048
|
-
ResultEncryptionMode?: string | undefined;
|
|
11049
|
-
/**
|
|
11050
|
-
* <p>The ARN of a custom KMS encryption key that you specify when you set
|
|
11051
|
-
* <code>ResultEncryptionMode</code> to <code>SSE_KMS</code>.</p>
|
|
11052
|
-
* @public
|
|
11053
|
-
*/
|
|
11054
|
-
ResultKmsKeyArn?: string | undefined;
|
|
11055
|
-
/**
|
|
11056
|
-
* <p>The object containing the result statistics for a completed assessment run.</p>
|
|
11057
|
-
* @public
|
|
11058
|
-
*/
|
|
11059
|
-
ResultStatistic?: ReplicationTaskAssessmentRunResultStatistic | undefined;
|
|
11060
|
-
}
|
|
@@ -1,6 +1,182 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { DatabaseMigrationServiceServiceException as __BaseException } from "./DatabaseMigrationServiceServiceException";
|
|
3
|
-
import { Certificate, ComputeConfig, Connection, DataMigration, DataProvider, DataProviderDescriptorDefinition, DataProviderSettings, DmsSslModeValue, DmsTransferSettings, DocDbSettings, DynamoDbSettings, ElasticsearchSettings, Endpoint, EventSubscription, Filter, GcpMySQLSettings, IBMDb2Settings, InstanceProfile, KafkaSettings, KerberosAuthenticationSettings, KinesisSettings, MicrosoftSQLServerSettings, MigrationProject, MigrationTypeValue, MongoDbSettings, MySQLSettings, NeptuneSettings, OracleSettings, OriginTypeValue, PostgreSQLSettings,
|
|
3
|
+
import { Certificate, ComputeConfig, Connection, DataMigration, DataProvider, DataProviderDescriptorDefinition, DataProviderSettings, DmsSslModeValue, DmsTransferSettings, DocDbSettings, DynamoDbSettings, ElasticsearchSettings, Endpoint, EventSubscription, Filter, GcpMySQLSettings, IBMDb2Settings, InstanceProfile, KafkaSettings, KerberosAuthenticationSettings, KinesisSettings, MicrosoftSQLServerSettings, MigrationProject, MigrationTypeValue, MongoDbSettings, MySQLSettings, NeptuneSettings, OracleSettings, OriginTypeValue, PostgreSQLSettings, RecommendationSettings, RedisSettings, RedshiftSettings, RefreshSchemasStatus, ReplicationConfig, ReplicationEndpointTypeValue, ReplicationInstance, ReplicationInstanceTaskLog, ReplicationSubnetGroup, ReplicationTask, ReplicationTaskAssessmentRun, ReplicationTaskAssessmentRunProgress, ReplicationTaskAssessmentRunResultStatistic, S3Settings, SCApplicationAttributes, SourceDataSetting, SybaseSettings, Tag, TargetDataSetting, TimestreamSettings } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DescribeReplicationInstanceTaskLogsResponse {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The Amazon Resource Name (ARN) of the replication instance.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
ReplicationInstanceArn?: string | undefined;
|
|
13
|
+
/**
|
|
14
|
+
* <p>An array of replication task log metadata. Each member of the array contains the
|
|
15
|
+
* replication task name, ARN, and task log size (in bytes). </p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
ReplicationInstanceTaskLogs?: ReplicationInstanceTaskLog[] | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p> An optional pagination token provided by a previous request. If this parameter is
|
|
21
|
+
* specified, the response includes only records beyond the marker, up to the value specified
|
|
22
|
+
* by <code>MaxRecords</code>.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
Marker?: string | undefined;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p></p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export interface DescribeReplicationsMessage {
|
|
32
|
+
/**
|
|
33
|
+
* <p>Filters applied to the replications.</p>
|
|
34
|
+
* <p> Valid filter names: <code>replication-config-arn</code> | <code>replication-config-id</code>
|
|
35
|
+
* </p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
Filters?: Filter[] | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* <p>The maximum number of records to include in the response. If more records exist than the
|
|
41
|
+
* specified <code>MaxRecords</code> value, a pagination token called a marker is included in
|
|
42
|
+
* the response so that the remaining results can be retrieved. </p>
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
MaxRecords?: number | undefined;
|
|
46
|
+
/**
|
|
47
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
48
|
+
* specified, the response includes only records beyond the marker, up to the value specified
|
|
49
|
+
* by <code>MaxRecords</code>. </p>
|
|
50
|
+
* @public
|
|
51
|
+
*/
|
|
52
|
+
Marker?: string | undefined;
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* <p>The results returned in <code>describe-replications</code> to display the results of the
|
|
56
|
+
* premigration assessment from the replication configuration.</p>
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
export interface PremigrationAssessmentStatus {
|
|
60
|
+
/**
|
|
61
|
+
* <p>The Amazon Resource Name (ARN) of this assessment run.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
PremigrationAssessmentRunArn?: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* <p>A configurable setting you can set to <code>true</code> (the defualt setting) or
|
|
67
|
+
* <code>false</code>. Use this setting to to stop the replication from starting
|
|
68
|
+
* automatically if the assessment fails. This can help you evaluate the issue that is
|
|
69
|
+
* preventing the replication from running successfully.</p>
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
72
|
+
FailOnAssessmentFailure?: boolean | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* <p>This describes the assessment run status. The status can be one of the following
|
|
75
|
+
* values:</p>
|
|
76
|
+
* <ul>
|
|
77
|
+
* <li>
|
|
78
|
+
* <p>
|
|
79
|
+
* <code>cancelling</code>: The assessment run was canceled.</p>
|
|
80
|
+
* </li>
|
|
81
|
+
* <li>
|
|
82
|
+
* <p>
|
|
83
|
+
* <code>deleting</code>: The assessment run was deleted.</p>
|
|
84
|
+
* </li>
|
|
85
|
+
* <li>
|
|
86
|
+
* <p>
|
|
87
|
+
* <code>failed</code>: At least one individual assessment completed with a failed
|
|
88
|
+
* status. </p>
|
|
89
|
+
* </li>
|
|
90
|
+
* <li>
|
|
91
|
+
* <p>
|
|
92
|
+
* <code>error-provisioning</code>: An internal error occurred while resources were
|
|
93
|
+
* provisioned (during the <code>provisioning</code> status).</p>
|
|
94
|
+
* </li>
|
|
95
|
+
* <li>
|
|
96
|
+
* <p>
|
|
97
|
+
* <code>error-executing</code> An internal error occurred while individual
|
|
98
|
+
* assessments ran (during the <code>running</code> status).</p>
|
|
99
|
+
* </li>
|
|
100
|
+
* <li>
|
|
101
|
+
* <p>
|
|
102
|
+
* <code>invalid state</code>: The assessment run is in an unknown state. </p>
|
|
103
|
+
* </li>
|
|
104
|
+
* <li>
|
|
105
|
+
* <p>
|
|
106
|
+
* <code>passed</code>: All individual assessments have completed and none have a
|
|
107
|
+
* failed status.</p>
|
|
108
|
+
* </li>
|
|
109
|
+
* <li>
|
|
110
|
+
* <p>
|
|
111
|
+
* <code>provisioning</code>: The resources required to run individual assessments
|
|
112
|
+
* are being provisioned. </p>
|
|
113
|
+
* </li>
|
|
114
|
+
* <li>
|
|
115
|
+
* <p>
|
|
116
|
+
* <code>running</code>: Individual assessments are being run. </p>
|
|
117
|
+
* </li>
|
|
118
|
+
* <li>
|
|
119
|
+
* <p>
|
|
120
|
+
* <code>starting</code>: The assessment run is starting, but resources are not yet
|
|
121
|
+
* being provisioned for individual assessments. </p>
|
|
122
|
+
* </li>
|
|
123
|
+
* <li>
|
|
124
|
+
* <p>
|
|
125
|
+
* <code>warning</code>: At least one individual assessment completed with a warning
|
|
126
|
+
* status. </p>
|
|
127
|
+
* </li>
|
|
128
|
+
* </ul>
|
|
129
|
+
* @public
|
|
130
|
+
*/
|
|
131
|
+
Status?: string | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* <p>The date which the assessment run was created.</p>
|
|
134
|
+
* @public
|
|
135
|
+
*/
|
|
136
|
+
PremigrationAssessmentRunCreationDate?: Date | undefined;
|
|
137
|
+
/**
|
|
138
|
+
* <p>The progress values reported by the <code>AssessmentProgress</code> response
|
|
139
|
+
* element.</p>
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
AssessmentProgress?: ReplicationTaskAssessmentRunProgress | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* <p>The last message generated by an individual assessment failure.</p>
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
LastFailureMessage?: string | undefined;
|
|
148
|
+
/**
|
|
149
|
+
* <p>The Amazon S3 bucket that Database Migration Service Serverless created to store the results of this
|
|
150
|
+
* assessment run.</p>
|
|
151
|
+
* @public
|
|
152
|
+
*/
|
|
153
|
+
ResultLocationBucket?: string | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* <p>The folder within an Amazon S3 bucket where you want Database Migration Service to store the results of
|
|
156
|
+
* this assessment run.</p>
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
ResultLocationFolder?: string | undefined;
|
|
160
|
+
/**
|
|
161
|
+
* <p>The supported values are <code>SSE_KMS</code> and <code>SSE_S3</code>. If these values
|
|
162
|
+
* are not provided, then the files are not encrypted at rest. For more information, see
|
|
163
|
+
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Target.S3.html#CHAP_Target.S3.KMSKeys">Creating Amazon Web Services KMS
|
|
164
|
+
* keys to encrypt Amazon S3 target objects</a>.</p>
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
167
|
+
ResultEncryptionMode?: string | undefined;
|
|
168
|
+
/**
|
|
169
|
+
* <p>The ARN of a custom KMS encryption key that you specify when you set
|
|
170
|
+
* <code>ResultEncryptionMode</code> to <code>SSE_KMS</code>.</p>
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
ResultKmsKeyArn?: string | undefined;
|
|
174
|
+
/**
|
|
175
|
+
* <p>The object containing the result statistics for a completed assessment run.</p>
|
|
176
|
+
* @public
|
|
177
|
+
*/
|
|
178
|
+
ResultStatistic?: ReplicationTaskAssessmentRunResultStatistic | undefined;
|
|
179
|
+
}
|
|
4
180
|
/**
|
|
5
181
|
* <p>Information about provisioning resources for an DMS serverless replication.</p>
|
|
6
182
|
* @public
|
|
@@ -1342,7 +1518,7 @@ export interface ModifyDataProviderMessage {
|
|
|
1342
1518
|
/**
|
|
1343
1519
|
* <p>The type of database engine for the data provider. Valid values include <code>"aurora"</code>,
|
|
1344
1520
|
* <code>"aurora-postgresql"</code>, <code>"mysql"</code>, <code>"oracle"</code>, <code>"postgres"</code>,
|
|
1345
|
-
* <code>"sqlserver"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code> and <code>
|
|
1521
|
+
* <code>"sqlserver"</code>, <code>redshift</code>, <code>mariadb</code>, <code>mongodb</code>, <code>db2</code>, <code>db2-zos</code>, <code>docdb</code>, and <code>sybase</code>. A value of <code>"aurora"</code> represents Amazon Aurora MySQL-Compatible Edition.</p>
|
|
1346
1522
|
* @public
|
|
1347
1523
|
*/
|
|
1348
1524
|
Engine?: string | undefined;
|
|
@@ -266,6 +266,8 @@ export declare var PendingMaintenanceAction: StaticStructureSchema;
|
|
|
266
266
|
export declare var PostgreSqlDataProviderSettings: StaticStructureSchema;
|
|
267
267
|
export declare var PostgreSQLSettings: StaticStructureSchema;
|
|
268
268
|
export declare var PremigrationAssessmentStatus: StaticStructureSchema;
|
|
269
|
+
export declare var ProcessedObject: StaticStructureSchema;
|
|
270
|
+
export declare var Progress: StaticStructureSchema;
|
|
269
271
|
export declare var ProvisionData: StaticStructureSchema;
|
|
270
272
|
export declare var RdsConfiguration: StaticStructureSchema;
|
|
271
273
|
export declare var RdsRecommendation: StaticStructureSchema;
|
|
@@ -355,6 +357,7 @@ export declare var StorageQuotaExceededFault: StaticErrorSchema;
|
|
|
355
357
|
export declare var Subnet: StaticStructureSchema;
|
|
356
358
|
export declare var SubnetAlreadyInUse: StaticErrorSchema;
|
|
357
359
|
export declare var SupportedEndpointType: StaticStructureSchema;
|
|
360
|
+
export declare var SybaseAseDataProviderSettings: StaticStructureSchema;
|
|
358
361
|
export declare var SybaseSettings: StaticStructureSchema;
|
|
359
362
|
export declare var TableStatistics: StaticStructureSchema;
|
|
360
363
|
export declare var TableToReload: StaticStructureSchema;
|