@aws-sdk/client-database-migration-service 3.810.0 → 3.812.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 +17 -0
- package/dist-es/models/models_0.js +8 -0
- package/dist-es/protocols/Aws_json1_1.js +5 -0
- package/dist-types/commands/CreateEndpointCommand.d.ts +8 -0
- package/dist-types/commands/DeleteEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DescribeEndpointsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeReplicationTableStatisticsCommand.d.ts +5 -0
- package/dist-types/commands/DescribeReplicationTaskAssessmentRunsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTableStatisticsCommand.d.ts +5 -0
- package/dist-types/commands/ModifyEndpointCommand.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +97 -50
- package/dist-types/models/models_1.d.ts +49 -0
- package/dist-types/ts3.4/commands/DescribeReplicationTaskAssessmentRunsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +21 -9
- package/dist-types/ts3.4/models/models_1.d.ts +9 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -174,6 +174,7 @@ __export(index_exports, {
|
|
|
174
174
|
ModifyReplicationTaskCommand: () => ModifyReplicationTaskCommand,
|
|
175
175
|
MongoDbSettingsFilterSensitiveLog: () => MongoDbSettingsFilterSensitiveLog,
|
|
176
176
|
MoveReplicationTaskCommand: () => MoveReplicationTaskCommand,
|
|
177
|
+
MySQLAuthenticationMethod: () => MySQLAuthenticationMethod,
|
|
177
178
|
MySQLSettingsFilterSensitiveLog: () => MySQLSettingsFilterSensitiveLog,
|
|
178
179
|
NestingLevelValue: () => NestingLevelValue,
|
|
179
180
|
OracleAuthenticationMethod: () => OracleAuthenticationMethod,
|
|
@@ -181,6 +182,7 @@ __export(index_exports, {
|
|
|
181
182
|
OriginTypeValue: () => OriginTypeValue,
|
|
182
183
|
ParquetVersionValue: () => ParquetVersionValue,
|
|
183
184
|
PluginNameValue: () => PluginNameValue,
|
|
185
|
+
PostgreSQLAuthenticationMethod: () => PostgreSQLAuthenticationMethod,
|
|
184
186
|
PostgreSQLSettingsFilterSensitiveLog: () => PostgreSQLSettingsFilterSensitiveLog,
|
|
185
187
|
RebootReplicationInstanceCommand: () => RebootReplicationInstanceCommand,
|
|
186
188
|
RedisAuthTypeValue: () => RedisAuthTypeValue,
|
|
@@ -687,6 +689,10 @@ var TlogAccessMode = {
|
|
|
687
689
|
PreferTlog: "PreferTlog",
|
|
688
690
|
TlogOnly: "TlogOnly"
|
|
689
691
|
};
|
|
692
|
+
var MySQLAuthenticationMethod = {
|
|
693
|
+
IAM: "iam",
|
|
694
|
+
Password: "password"
|
|
695
|
+
};
|
|
690
696
|
var OracleAuthenticationMethod = {
|
|
691
697
|
Kerberos: "kerberos",
|
|
692
698
|
Password: "password"
|
|
@@ -696,6 +702,10 @@ var CharLengthSemantics = {
|
|
|
696
702
|
CHAR: "char",
|
|
697
703
|
DEFAULT: "default"
|
|
698
704
|
};
|
|
705
|
+
var PostgreSQLAuthenticationMethod = {
|
|
706
|
+
IAM: "iam",
|
|
707
|
+
Password: "password"
|
|
708
|
+
};
|
|
699
709
|
var DatabaseMode = {
|
|
700
710
|
BABELFISH: "babelfish",
|
|
701
711
|
DEFAULT: "default"
|
|
@@ -4739,6 +4749,11 @@ var de_TableStatistics = /* @__PURE__ */ __name((output, context) => {
|
|
|
4739
4749
|
FullLoadStartTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "FullLoadStartTime"),
|
|
4740
4750
|
Inserts: import_smithy_client.expectLong,
|
|
4741
4751
|
LastUpdateTime: /* @__PURE__ */ __name((_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))), "LastUpdateTime"),
|
|
4752
|
+
ResyncProgress: import_smithy_client.limitedParseDouble,
|
|
4753
|
+
ResyncRowsAttempted: import_smithy_client.expectLong,
|
|
4754
|
+
ResyncRowsFailed: import_smithy_client.expectLong,
|
|
4755
|
+
ResyncRowsSucceeded: import_smithy_client.expectLong,
|
|
4756
|
+
ResyncState: import_smithy_client.expectString,
|
|
4742
4757
|
SchemaName: import_smithy_client.expectString,
|
|
4743
4758
|
TableName: import_smithy_client.expectString,
|
|
4744
4759
|
TableState: import_smithy_client.expectString,
|
|
@@ -7768,8 +7783,10 @@ var waitUntilTestConnectionSucceeds = /* @__PURE__ */ __name(async (params, inpu
|
|
|
7768
7783
|
SqlServerAuthenticationMethod,
|
|
7769
7784
|
SafeguardPolicy,
|
|
7770
7785
|
TlogAccessMode,
|
|
7786
|
+
MySQLAuthenticationMethod,
|
|
7771
7787
|
OracleAuthenticationMethod,
|
|
7772
7788
|
CharLengthSemantics,
|
|
7789
|
+
PostgreSQLAuthenticationMethod,
|
|
7773
7790
|
DatabaseMode,
|
|
7774
7791
|
LongVarcharMappingType,
|
|
7775
7792
|
PluginNameValue,
|
|
@@ -182,6 +182,10 @@ export const TlogAccessMode = {
|
|
|
182
182
|
PreferTlog: "PreferTlog",
|
|
183
183
|
TlogOnly: "TlogOnly",
|
|
184
184
|
};
|
|
185
|
+
export const MySQLAuthenticationMethod = {
|
|
186
|
+
IAM: "iam",
|
|
187
|
+
Password: "password",
|
|
188
|
+
};
|
|
185
189
|
export const OracleAuthenticationMethod = {
|
|
186
190
|
Kerberos: "kerberos",
|
|
187
191
|
Password: "password",
|
|
@@ -191,6 +195,10 @@ export const CharLengthSemantics = {
|
|
|
191
195
|
CHAR: "char",
|
|
192
196
|
DEFAULT: "default",
|
|
193
197
|
};
|
|
198
|
+
export const PostgreSQLAuthenticationMethod = {
|
|
199
|
+
IAM: "iam",
|
|
200
|
+
Password: "password",
|
|
201
|
+
};
|
|
194
202
|
export const DatabaseMode = {
|
|
195
203
|
BABELFISH: "babelfish",
|
|
196
204
|
DEFAULT: "default",
|
|
@@ -3440,6 +3440,11 @@ const de_TableStatistics = (output, context) => {
|
|
|
3440
3440
|
FullLoadStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3441
3441
|
Inserts: __expectLong,
|
|
3442
3442
|
LastUpdateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3443
|
+
ResyncProgress: __limitedParseDouble,
|
|
3444
|
+
ResyncRowsAttempted: __expectLong,
|
|
3445
|
+
ResyncRowsFailed: __expectLong,
|
|
3446
|
+
ResyncRowsSucceeded: __expectLong,
|
|
3447
|
+
ResyncState: __expectString,
|
|
3443
3448
|
SchemaName: __expectString,
|
|
3444
3449
|
TableName: __expectString,
|
|
3445
3450
|
TableState: __expectString,
|
|
@@ -243,6 +243,8 @@ declare const CreateEndpointCommand_base: {
|
|
|
243
243
|
* DatabaseMode: "default" || "babelfish",
|
|
244
244
|
* BabelfishDatabaseName: "STRING_VALUE",
|
|
245
245
|
* DisableUnicodeSourceFilter: true || false,
|
|
246
|
+
* ServiceAccessRoleArn: "STRING_VALUE",
|
|
247
|
+
* AuthenticationMethod: "password" || "iam",
|
|
246
248
|
* },
|
|
247
249
|
* MySQLSettings: { // MySQLSettings
|
|
248
250
|
* AfterConnectScript: "STRING_VALUE",
|
|
@@ -260,6 +262,8 @@ declare const CreateEndpointCommand_base: {
|
|
|
260
262
|
* SecretsManagerAccessRoleArn: "STRING_VALUE",
|
|
261
263
|
* SecretsManagerSecretId: "STRING_VALUE",
|
|
262
264
|
* ExecuteTimeout: Number("int"),
|
|
265
|
+
* ServiceAccessRoleArn: "STRING_VALUE",
|
|
266
|
+
* AuthenticationMethod: "password" || "iam",
|
|
263
267
|
* },
|
|
264
268
|
* OracleSettings: { // OracleSettings
|
|
265
269
|
* AddSupplementalLogging: true || false,
|
|
@@ -603,6 +607,8 @@ declare const CreateEndpointCommand_base: {
|
|
|
603
607
|
* // DatabaseMode: "default" || "babelfish",
|
|
604
608
|
* // BabelfishDatabaseName: "STRING_VALUE",
|
|
605
609
|
* // DisableUnicodeSourceFilter: true || false,
|
|
610
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
611
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
606
612
|
* // },
|
|
607
613
|
* // MySQLSettings: { // MySQLSettings
|
|
608
614
|
* // AfterConnectScript: "STRING_VALUE",
|
|
@@ -620,6 +626,8 @@ declare const CreateEndpointCommand_base: {
|
|
|
620
626
|
* // SecretsManagerAccessRoleArn: "STRING_VALUE",
|
|
621
627
|
* // SecretsManagerSecretId: "STRING_VALUE",
|
|
622
628
|
* // ExecuteTimeout: Number("int"),
|
|
629
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
630
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
623
631
|
* // },
|
|
624
632
|
* // OracleSettings: { // OracleSettings
|
|
625
633
|
* // AddSupplementalLogging: true || false,
|
|
@@ -242,6 +242,8 @@ declare const DeleteEndpointCommand_base: {
|
|
|
242
242
|
* // DatabaseMode: "default" || "babelfish",
|
|
243
243
|
* // BabelfishDatabaseName: "STRING_VALUE",
|
|
244
244
|
* // DisableUnicodeSourceFilter: true || false,
|
|
245
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
246
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
245
247
|
* // },
|
|
246
248
|
* // MySQLSettings: { // MySQLSettings
|
|
247
249
|
* // AfterConnectScript: "STRING_VALUE",
|
|
@@ -259,6 +261,8 @@ declare const DeleteEndpointCommand_base: {
|
|
|
259
261
|
* // SecretsManagerAccessRoleArn: "STRING_VALUE",
|
|
260
262
|
* // SecretsManagerSecretId: "STRING_VALUE",
|
|
261
263
|
* // ExecuteTimeout: Number("int"),
|
|
264
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
265
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
262
266
|
* // },
|
|
263
267
|
* // OracleSettings: { // OracleSettings
|
|
264
268
|
* // AddSupplementalLogging: true || false,
|
|
@@ -248,6 +248,8 @@ declare const DescribeEndpointsCommand_base: {
|
|
|
248
248
|
* // DatabaseMode: "default" || "babelfish",
|
|
249
249
|
* // BabelfishDatabaseName: "STRING_VALUE",
|
|
250
250
|
* // DisableUnicodeSourceFilter: true || false,
|
|
251
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
252
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
251
253
|
* // },
|
|
252
254
|
* // MySQLSettings: { // MySQLSettings
|
|
253
255
|
* // AfterConnectScript: "STRING_VALUE",
|
|
@@ -265,6 +267,8 @@ declare const DescribeEndpointsCommand_base: {
|
|
|
265
267
|
* // SecretsManagerAccessRoleArn: "STRING_VALUE",
|
|
266
268
|
* // SecretsManagerSecretId: "STRING_VALUE",
|
|
267
269
|
* // ExecuteTimeout: Number("int"),
|
|
270
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
271
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
268
272
|
* // },
|
|
269
273
|
* // OracleSettings: { // OracleSettings
|
|
270
274
|
* // AddSupplementalLogging: true || false,
|
|
@@ -78,6 +78,11 @@ declare const DescribeReplicationTableStatisticsCommand_base: {
|
|
|
78
78
|
* // ValidationSuspendedRecords: Number("long"),
|
|
79
79
|
* // ValidationState: "STRING_VALUE",
|
|
80
80
|
* // ValidationStateDetails: "STRING_VALUE",
|
|
81
|
+
* // ResyncState: "STRING_VALUE",
|
|
82
|
+
* // ResyncRowsAttempted: Number("long"),
|
|
83
|
+
* // ResyncRowsSucceeded: Number("long"),
|
|
84
|
+
* // ResyncRowsFailed: Number("long"),
|
|
85
|
+
* // ResyncProgress: Number("double"),
|
|
81
86
|
* // },
|
|
82
87
|
* // ],
|
|
83
88
|
* // };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
3
|
import { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient";
|
|
4
|
-
import { DescribeReplicationTaskAssessmentRunsMessage, DescribeReplicationTaskAssessmentRunsResponse } from "../models/
|
|
4
|
+
import { DescribeReplicationTaskAssessmentRunsMessage, DescribeReplicationTaskAssessmentRunsResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -80,6 +80,11 @@ declare const DescribeTableStatisticsCommand_base: {
|
|
|
80
80
|
* // ValidationSuspendedRecords: Number("long"),
|
|
81
81
|
* // ValidationState: "STRING_VALUE",
|
|
82
82
|
* // ValidationStateDetails: "STRING_VALUE",
|
|
83
|
+
* // ResyncState: "STRING_VALUE",
|
|
84
|
+
* // ResyncRowsAttempted: Number("long"),
|
|
85
|
+
* // ResyncRowsSucceeded: Number("long"),
|
|
86
|
+
* // ResyncRowsFailed: Number("long"),
|
|
87
|
+
* // ResyncProgress: Number("double"),
|
|
83
88
|
* // },
|
|
84
89
|
* // ],
|
|
85
90
|
* // Marker: "STRING_VALUE",
|
|
@@ -236,6 +236,8 @@ declare const ModifyEndpointCommand_base: {
|
|
|
236
236
|
* DatabaseMode: "default" || "babelfish",
|
|
237
237
|
* BabelfishDatabaseName: "STRING_VALUE",
|
|
238
238
|
* DisableUnicodeSourceFilter: true || false,
|
|
239
|
+
* ServiceAccessRoleArn: "STRING_VALUE",
|
|
240
|
+
* AuthenticationMethod: "password" || "iam",
|
|
239
241
|
* },
|
|
240
242
|
* MySQLSettings: { // MySQLSettings
|
|
241
243
|
* AfterConnectScript: "STRING_VALUE",
|
|
@@ -253,6 +255,8 @@ declare const ModifyEndpointCommand_base: {
|
|
|
253
255
|
* SecretsManagerAccessRoleArn: "STRING_VALUE",
|
|
254
256
|
* SecretsManagerSecretId: "STRING_VALUE",
|
|
255
257
|
* ExecuteTimeout: Number("int"),
|
|
258
|
+
* ServiceAccessRoleArn: "STRING_VALUE",
|
|
259
|
+
* AuthenticationMethod: "password" || "iam",
|
|
256
260
|
* },
|
|
257
261
|
* OracleSettings: { // OracleSettings
|
|
258
262
|
* AddSupplementalLogging: true || false,
|
|
@@ -596,6 +600,8 @@ declare const ModifyEndpointCommand_base: {
|
|
|
596
600
|
* // DatabaseMode: "default" || "babelfish",
|
|
597
601
|
* // BabelfishDatabaseName: "STRING_VALUE",
|
|
598
602
|
* // DisableUnicodeSourceFilter: true || false,
|
|
603
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
604
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
599
605
|
* // },
|
|
600
606
|
* // MySQLSettings: { // MySQLSettings
|
|
601
607
|
* // AfterConnectScript: "STRING_VALUE",
|
|
@@ -613,6 +619,8 @@ declare const ModifyEndpointCommand_base: {
|
|
|
613
619
|
* // SecretsManagerAccessRoleArn: "STRING_VALUE",
|
|
614
620
|
* // SecretsManagerSecretId: "STRING_VALUE",
|
|
615
621
|
* // ExecuteTimeout: Number("int"),
|
|
622
|
+
* // ServiceAccessRoleArn: "STRING_VALUE",
|
|
623
|
+
* // AuthenticationMethod: "password" || "iam",
|
|
616
624
|
* // },
|
|
617
625
|
* // OracleSettings: { // OracleSettings
|
|
618
626
|
* // AddSupplementalLogging: true || false,
|
|
@@ -2649,6 +2649,18 @@ export interface MongoDbSettings {
|
|
|
2649
2649
|
*/
|
|
2650
2650
|
ReplicateShardCollections?: boolean | undefined;
|
|
2651
2651
|
}
|
|
2652
|
+
/**
|
|
2653
|
+
* @public
|
|
2654
|
+
* @enum
|
|
2655
|
+
*/
|
|
2656
|
+
export declare const MySQLAuthenticationMethod: {
|
|
2657
|
+
readonly IAM: "iam";
|
|
2658
|
+
readonly Password: "password";
|
|
2659
|
+
};
|
|
2660
|
+
/**
|
|
2661
|
+
* @public
|
|
2662
|
+
*/
|
|
2663
|
+
export type MySQLAuthenticationMethod = (typeof MySQLAuthenticationMethod)[keyof typeof MySQLAuthenticationMethod];
|
|
2652
2664
|
/**
|
|
2653
2665
|
* <p>Provides information that defines a MySQL endpoint.</p>
|
|
2654
2666
|
* @public
|
|
@@ -2778,6 +2790,16 @@ export interface MySQLSettings {
|
|
|
2778
2790
|
* @public
|
|
2779
2791
|
*/
|
|
2780
2792
|
ExecuteTimeout?: number | undefined;
|
|
2793
|
+
/**
|
|
2794
|
+
* <p>The IAM role you can use to authenticate when connecting to your endpoint. Ensure to include <code>iam:PassRole</code> and <code>rds-db:connect</code> actions in permission policy.</p>
|
|
2795
|
+
* @public
|
|
2796
|
+
*/
|
|
2797
|
+
ServiceAccessRoleArn?: string | undefined;
|
|
2798
|
+
/**
|
|
2799
|
+
* <p>This attribute allows you to specify the authentication method as "iam auth".</p>
|
|
2800
|
+
* @public
|
|
2801
|
+
*/
|
|
2802
|
+
AuthenticationMethod?: MySQLAuthenticationMethod | undefined;
|
|
2781
2803
|
}
|
|
2782
2804
|
/**
|
|
2783
2805
|
* <p>Provides information that defines an Amazon Neptune endpoint.</p>
|
|
@@ -3247,6 +3269,18 @@ export interface OracleSettings {
|
|
|
3247
3269
|
*/
|
|
3248
3270
|
AuthenticationMethod?: OracleAuthenticationMethod | undefined;
|
|
3249
3271
|
}
|
|
3272
|
+
/**
|
|
3273
|
+
* @public
|
|
3274
|
+
* @enum
|
|
3275
|
+
*/
|
|
3276
|
+
export declare const PostgreSQLAuthenticationMethod: {
|
|
3277
|
+
readonly IAM: "iam";
|
|
3278
|
+
readonly Password: "password";
|
|
3279
|
+
};
|
|
3280
|
+
/**
|
|
3281
|
+
* @public
|
|
3282
|
+
*/
|
|
3283
|
+
export type PostgreSQLAuthenticationMethod = (typeof PostgreSQLAuthenticationMethod)[keyof typeof PostgreSQLAuthenticationMethod];
|
|
3250
3284
|
/**
|
|
3251
3285
|
* @public
|
|
3252
3286
|
* @enum
|
|
@@ -3484,6 +3518,16 @@ export interface PostgreSQLSettings {
|
|
|
3484
3518
|
* @public
|
|
3485
3519
|
*/
|
|
3486
3520
|
DisableUnicodeSourceFilter?: boolean | undefined;
|
|
3521
|
+
/**
|
|
3522
|
+
* <p>The IAM role arn you can use to authenticate the connection to your endpoint. Ensure to include <code>iam:PassRole</code> and <code>rds-db:connect</code> actions in permission policy.</p>
|
|
3523
|
+
* @public
|
|
3524
|
+
*/
|
|
3525
|
+
ServiceAccessRoleArn?: string | undefined;
|
|
3526
|
+
/**
|
|
3527
|
+
* <p>This attribute allows you to specify the authentication method as "iam auth".</p>
|
|
3528
|
+
* @public
|
|
3529
|
+
*/
|
|
3530
|
+
AuthenticationMethod?: PostgreSQLAuthenticationMethod | undefined;
|
|
3487
3531
|
}
|
|
3488
3532
|
/**
|
|
3489
3533
|
* @public
|
|
@@ -8528,7 +8572,8 @@ export interface DescribeEventSubscriptionsMessage {
|
|
|
8528
8572
|
SubscriptionName?: string | undefined;
|
|
8529
8573
|
/**
|
|
8530
8574
|
* <p>Filters applied to event subscriptions.</p>
|
|
8531
|
-
* <p>Valid filter names: event-subscription-arn | event-subscription-id
|
|
8575
|
+
* <p>Valid filter names: <code>event-subscription-arn</code> | <code>event-subscription-id</code>
|
|
8576
|
+
* </p>
|
|
8532
8577
|
* @public
|
|
8533
8578
|
*/
|
|
8534
8579
|
Filters?: Filter[] | undefined;
|
|
@@ -9997,6 +10042,8 @@ export interface DescribePendingMaintenanceActionsResponse {
|
|
|
9997
10042
|
export interface DescribeRecommendationLimitationsRequest {
|
|
9998
10043
|
/**
|
|
9999
10044
|
* <p>Filters applied to the limitations described in the form of key-value pairs.</p>
|
|
10045
|
+
* <p>Valid filter names: <code>database-id</code> | <code>engine-name</code>
|
|
10046
|
+
* </p>
|
|
10000
10047
|
* @public
|
|
10001
10048
|
*/
|
|
10002
10049
|
Filters?: Filter[] | undefined;
|
|
@@ -10094,6 +10141,8 @@ export interface DescribeRecommendationsRequest {
|
|
|
10094
10141
|
/**
|
|
10095
10142
|
* <p>Filters applied to the target engine recommendations described in the form of
|
|
10096
10143
|
* key-value pairs.</p>
|
|
10144
|
+
* <p>Valid filter names: <code>database-id</code> | <code>engine-name</code>
|
|
10145
|
+
* </p>
|
|
10097
10146
|
* @public
|
|
10098
10147
|
*/
|
|
10099
10148
|
Filters?: Filter[] | undefined;
|
|
@@ -10563,6 +10612,8 @@ export interface DescribeReplicationInstanceTaskLogsResponse {
|
|
|
10563
10612
|
export interface DescribeReplicationsMessage {
|
|
10564
10613
|
/**
|
|
10565
10614
|
* <p>Filters applied to the replications.</p>
|
|
10615
|
+
* <p> Valid filter names: <code>replication-config-arn</code> | <code>replication-config-id</code>
|
|
10616
|
+
* </p>
|
|
10566
10617
|
* @public
|
|
10567
10618
|
*/
|
|
10568
10619
|
Filters?: Filter[] | undefined;
|
|
@@ -11265,6 +11316,51 @@ export interface TableStatistics {
|
|
|
11265
11316
|
* @public
|
|
11266
11317
|
*/
|
|
11267
11318
|
ValidationStateDetails?: string | undefined;
|
|
11319
|
+
/**
|
|
11320
|
+
* <p>Records the current state of table resynchronization in the migration task.</p>
|
|
11321
|
+
* <p>This parameter can have the following values:</p>
|
|
11322
|
+
* <ul>
|
|
11323
|
+
* <li>
|
|
11324
|
+
* <p>Not enabled – Resync is not enabled for the table in the migration task.</p>
|
|
11325
|
+
* </li>
|
|
11326
|
+
* <li>
|
|
11327
|
+
* <p>Pending – The tables are waiting for resync.</p>
|
|
11328
|
+
* </li>
|
|
11329
|
+
* <li>
|
|
11330
|
+
* <p>In progress – Resync in progress for some records in the table.</p>
|
|
11331
|
+
* </li>
|
|
11332
|
+
* <li>
|
|
11333
|
+
* <p>No primary key – The table could not be resynced because it has no primary key.</p>
|
|
11334
|
+
* </li>
|
|
11335
|
+
* <li>
|
|
11336
|
+
* <p>Last resync at: <code>date/time</code> – Resync session is finished at time. Time provided in UTC format.</p>
|
|
11337
|
+
* </li>
|
|
11338
|
+
* </ul>
|
|
11339
|
+
* @public
|
|
11340
|
+
*/
|
|
11341
|
+
ResyncState?: string | undefined;
|
|
11342
|
+
/**
|
|
11343
|
+
* <p>Records the total number of mismatched data rows where the system attempted to apply
|
|
11344
|
+
* fixes in the target database.</p>
|
|
11345
|
+
* @public
|
|
11346
|
+
*/
|
|
11347
|
+
ResyncRowsAttempted?: number | undefined;
|
|
11348
|
+
/**
|
|
11349
|
+
* <p>Records the total number of mismatched data rows where fixes were successfully applied in the target database.</p>
|
|
11350
|
+
* @public
|
|
11351
|
+
*/
|
|
11352
|
+
ResyncRowsSucceeded?: number | undefined;
|
|
11353
|
+
/**
|
|
11354
|
+
* <p>Records the total number of mismatched data rows where fix attempts failed in the target
|
|
11355
|
+
* database.</p>
|
|
11356
|
+
* @public
|
|
11357
|
+
*/
|
|
11358
|
+
ResyncRowsFailed?: number | undefined;
|
|
11359
|
+
/**
|
|
11360
|
+
* <p>Calculates the percentage of failed validations that were successfully resynced to the system.</p>
|
|
11361
|
+
* @public
|
|
11362
|
+
*/
|
|
11363
|
+
ResyncProgress?: number | undefined;
|
|
11268
11364
|
}
|
|
11269
11365
|
/**
|
|
11270
11366
|
* <p></p>
|
|
@@ -11388,55 +11484,6 @@ export interface DescribeReplicationTaskAssessmentResultsResponse {
|
|
|
11388
11484
|
*/
|
|
11389
11485
|
ReplicationTaskAssessmentResults?: ReplicationTaskAssessmentResult[] | undefined;
|
|
11390
11486
|
}
|
|
11391
|
-
/**
|
|
11392
|
-
* <p></p>
|
|
11393
|
-
* @public
|
|
11394
|
-
*/
|
|
11395
|
-
export interface DescribeReplicationTaskAssessmentRunsMessage {
|
|
11396
|
-
/**
|
|
11397
|
-
* <p>Filters applied to the premigration assessment runs described in the form of key-value
|
|
11398
|
-
* pairs.</p>
|
|
11399
|
-
* <p>Valid filter names: <code>replication-task-assessment-run-arn</code>,
|
|
11400
|
-
* <code>replication-task-arn</code>, <code>replication-instance-arn</code>,
|
|
11401
|
-
* <code>status</code>
|
|
11402
|
-
* </p>
|
|
11403
|
-
* @public
|
|
11404
|
-
*/
|
|
11405
|
-
Filters?: Filter[] | undefined;
|
|
11406
|
-
/**
|
|
11407
|
-
* <p>The maximum number of records to include in the response. If more records exist than the
|
|
11408
|
-
* specified <code>MaxRecords</code> value, a pagination token called a marker is included in
|
|
11409
|
-
* the response so that the remaining results can be retrieved.</p>
|
|
11410
|
-
* @public
|
|
11411
|
-
*/
|
|
11412
|
-
MaxRecords?: number | undefined;
|
|
11413
|
-
/**
|
|
11414
|
-
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
11415
|
-
* specified, the response includes only records beyond the marker, up to the value specified
|
|
11416
|
-
* by <code>MaxRecords</code>.</p>
|
|
11417
|
-
* @public
|
|
11418
|
-
*/
|
|
11419
|
-
Marker?: string | undefined;
|
|
11420
|
-
}
|
|
11421
|
-
/**
|
|
11422
|
-
* <p></p>
|
|
11423
|
-
* @public
|
|
11424
|
-
*/
|
|
11425
|
-
export interface DescribeReplicationTaskAssessmentRunsResponse {
|
|
11426
|
-
/**
|
|
11427
|
-
* <p>A pagination token returned for you to pass to a subsequent request. If you pass this
|
|
11428
|
-
* token as the <code>Marker</code> value in a subsequent request, the response includes only
|
|
11429
|
-
* records beyond the marker, up to the value specified in the request by
|
|
11430
|
-
* <code>MaxRecords</code>.</p>
|
|
11431
|
-
* @public
|
|
11432
|
-
*/
|
|
11433
|
-
Marker?: string | undefined;
|
|
11434
|
-
/**
|
|
11435
|
-
* <p>One or more premigration assessment runs as specified by <code>Filters</code>.</p>
|
|
11436
|
-
* @public
|
|
11437
|
-
*/
|
|
11438
|
-
ReplicationTaskAssessmentRuns?: ReplicationTaskAssessmentRun[] | undefined;
|
|
11439
|
-
}
|
|
11440
11487
|
/**
|
|
11441
11488
|
* @internal
|
|
11442
11489
|
*/
|
|
@@ -1,6 +1,55 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { DatabaseMigrationServiceServiceException as __BaseException } from "./DatabaseMigrationServiceServiceException";
|
|
3
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, PostgreSQLSettings, RecommendationSettings, RedisSettings, RedshiftSettings, RefreshSchemasStatus, Replication, ReplicationConfig, ReplicationEndpointTypeValue, ReplicationInstance, ReplicationSubnetGroup, ReplicationTask, ReplicationTaskAssessmentRun, S3Settings, SCApplicationAttributes, SourceDataSetting, SybaseSettings, TableStatistics, Tag, TargetDataSetting, TimestreamSettings } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* <p></p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export interface DescribeReplicationTaskAssessmentRunsMessage {
|
|
9
|
+
/**
|
|
10
|
+
* <p>Filters applied to the premigration assessment runs described in the form of key-value
|
|
11
|
+
* pairs.</p>
|
|
12
|
+
* <p>Valid filter names: <code>replication-task-assessment-run-arn</code>,
|
|
13
|
+
* <code>replication-task-arn</code>, <code>replication-instance-arn</code>,
|
|
14
|
+
* <code>status</code>
|
|
15
|
+
* </p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
Filters?: Filter[] | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* <p>The maximum number of records to include in the response. If more records exist than the
|
|
21
|
+
* specified <code>MaxRecords</code> value, a pagination token called a marker is included in
|
|
22
|
+
* the response so that the remaining results can be retrieved.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
MaxRecords?: number | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* <p>An optional pagination token provided by a previous request. If this parameter is
|
|
28
|
+
* specified, the response includes only records beyond the marker, up to the value specified
|
|
29
|
+
* by <code>MaxRecords</code>.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
Marker?: string | undefined;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* <p></p>
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export interface DescribeReplicationTaskAssessmentRunsResponse {
|
|
39
|
+
/**
|
|
40
|
+
* <p>A pagination token returned for you to pass to a subsequent request. If you pass this
|
|
41
|
+
* token as the <code>Marker</code> value in a subsequent request, the response includes only
|
|
42
|
+
* records beyond the marker, up to the value specified in the request by
|
|
43
|
+
* <code>MaxRecords</code>.</p>
|
|
44
|
+
* @public
|
|
45
|
+
*/
|
|
46
|
+
Marker?: string | undefined;
|
|
47
|
+
/**
|
|
48
|
+
* <p>One or more premigration assessment runs as specified by <code>Filters</code>.</p>
|
|
49
|
+
* @public
|
|
50
|
+
*/
|
|
51
|
+
ReplicationTaskAssessmentRuns?: ReplicationTaskAssessmentRun[] | undefined;
|
|
52
|
+
}
|
|
4
53
|
/**
|
|
5
54
|
* <p></p>
|
|
6
55
|
* @public
|
|
@@ -8,7 +8,7 @@ import {
|
|
|
8
8
|
import {
|
|
9
9
|
DescribeReplicationTaskAssessmentRunsMessage,
|
|
10
10
|
DescribeReplicationTaskAssessmentRunsResponse,
|
|
11
|
-
} from "../models/
|
|
11
|
+
} from "../models/models_1";
|
|
12
12
|
export { __MetadataBearer };
|
|
13
13
|
export { $Command };
|
|
14
14
|
export interface DescribeReplicationTaskAssessmentRunsCommandInput
|
|
@@ -697,6 +697,12 @@ export interface MongoDbSettings {
|
|
|
697
697
|
UseUpdateLookUp?: boolean | undefined;
|
|
698
698
|
ReplicateShardCollections?: boolean | undefined;
|
|
699
699
|
}
|
|
700
|
+
export declare const MySQLAuthenticationMethod: {
|
|
701
|
+
readonly IAM: "iam";
|
|
702
|
+
readonly Password: "password";
|
|
703
|
+
};
|
|
704
|
+
export type MySQLAuthenticationMethod =
|
|
705
|
+
(typeof MySQLAuthenticationMethod)[keyof typeof MySQLAuthenticationMethod];
|
|
700
706
|
export interface MySQLSettings {
|
|
701
707
|
AfterConnectScript?: string | undefined;
|
|
702
708
|
CleanSourceMetadataOnMismatch?: boolean | undefined;
|
|
@@ -713,6 +719,8 @@ export interface MySQLSettings {
|
|
|
713
719
|
SecretsManagerAccessRoleArn?: string | undefined;
|
|
714
720
|
SecretsManagerSecretId?: string | undefined;
|
|
715
721
|
ExecuteTimeout?: number | undefined;
|
|
722
|
+
ServiceAccessRoleArn?: string | undefined;
|
|
723
|
+
AuthenticationMethod?: MySQLAuthenticationMethod | undefined;
|
|
716
724
|
}
|
|
717
725
|
export interface NeptuneSettings {
|
|
718
726
|
ServiceAccessRoleArn?: string | undefined;
|
|
@@ -782,6 +790,12 @@ export interface OracleSettings {
|
|
|
782
790
|
OpenTransactionWindow?: number | undefined;
|
|
783
791
|
AuthenticationMethod?: OracleAuthenticationMethod | undefined;
|
|
784
792
|
}
|
|
793
|
+
export declare const PostgreSQLAuthenticationMethod: {
|
|
794
|
+
readonly IAM: "iam";
|
|
795
|
+
readonly Password: "password";
|
|
796
|
+
};
|
|
797
|
+
export type PostgreSQLAuthenticationMethod =
|
|
798
|
+
(typeof PostgreSQLAuthenticationMethod)[keyof typeof PostgreSQLAuthenticationMethod];
|
|
785
799
|
export declare const DatabaseMode: {
|
|
786
800
|
readonly BABELFISH: "babelfish";
|
|
787
801
|
readonly DEFAULT: "default";
|
|
@@ -827,6 +841,8 @@ export interface PostgreSQLSettings {
|
|
|
827
841
|
DatabaseMode?: DatabaseMode | undefined;
|
|
828
842
|
BabelfishDatabaseName?: string | undefined;
|
|
829
843
|
DisableUnicodeSourceFilter?: boolean | undefined;
|
|
844
|
+
ServiceAccessRoleArn?: string | undefined;
|
|
845
|
+
AuthenticationMethod?: PostgreSQLAuthenticationMethod | undefined;
|
|
830
846
|
}
|
|
831
847
|
export declare const RedisAuthTypeValue: {
|
|
832
848
|
readonly AUTH_ROLE: "auth-role";
|
|
@@ -2266,6 +2282,11 @@ export interface TableStatistics {
|
|
|
2266
2282
|
ValidationSuspendedRecords?: number | undefined;
|
|
2267
2283
|
ValidationState?: string | undefined;
|
|
2268
2284
|
ValidationStateDetails?: string | undefined;
|
|
2285
|
+
ResyncState?: string | undefined;
|
|
2286
|
+
ResyncRowsAttempted?: number | undefined;
|
|
2287
|
+
ResyncRowsSucceeded?: number | undefined;
|
|
2288
|
+
ResyncRowsFailed?: number | undefined;
|
|
2289
|
+
ResyncProgress?: number | undefined;
|
|
2269
2290
|
}
|
|
2270
2291
|
export interface DescribeReplicationTableStatisticsResponse {
|
|
2271
2292
|
ReplicationConfigArn?: string | undefined;
|
|
@@ -2293,15 +2314,6 @@ export interface DescribeReplicationTaskAssessmentResultsResponse {
|
|
|
2293
2314
|
| ReplicationTaskAssessmentResult[]
|
|
2294
2315
|
| undefined;
|
|
2295
2316
|
}
|
|
2296
|
-
export interface DescribeReplicationTaskAssessmentRunsMessage {
|
|
2297
|
-
Filters?: Filter[] | undefined;
|
|
2298
|
-
MaxRecords?: number | undefined;
|
|
2299
|
-
Marker?: string | undefined;
|
|
2300
|
-
}
|
|
2301
|
-
export interface DescribeReplicationTaskAssessmentRunsResponse {
|
|
2302
|
-
Marker?: string | undefined;
|
|
2303
|
-
ReplicationTaskAssessmentRuns?: ReplicationTaskAssessmentRun[] | undefined;
|
|
2304
|
-
}
|
|
2305
2317
|
export declare const CreateDataMigrationMessageFilterSensitiveLog: (
|
|
2306
2318
|
obj: CreateDataMigrationMessage
|
|
2307
2319
|
) => any;
|
|
@@ -50,6 +50,15 @@ import {
|
|
|
50
50
|
TargetDataSetting,
|
|
51
51
|
TimestreamSettings,
|
|
52
52
|
} from "./models_0";
|
|
53
|
+
export interface DescribeReplicationTaskAssessmentRunsMessage {
|
|
54
|
+
Filters?: Filter[] | undefined;
|
|
55
|
+
MaxRecords?: number | undefined;
|
|
56
|
+
Marker?: string | undefined;
|
|
57
|
+
}
|
|
58
|
+
export interface DescribeReplicationTaskAssessmentRunsResponse {
|
|
59
|
+
Marker?: string | undefined;
|
|
60
|
+
ReplicationTaskAssessmentRuns?: ReplicationTaskAssessmentRun[] | undefined;
|
|
61
|
+
}
|
|
53
62
|
export interface DescribeReplicationTaskIndividualAssessmentsMessage {
|
|
54
63
|
Filters?: Filter[] | undefined;
|
|
55
64
|
MaxRecords?: number | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-database-migration-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.812.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-database-migration-service",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.812.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.812.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.804.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.804.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.804.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.812.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.808.0",
|
|
30
30
|
"@aws-sdk/types": "3.804.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.808.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.804.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.812.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.2",
|
|
35
35
|
"@smithy/core": "^3.3.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|