@aws-sdk/client-database-migration-service 3.744.0 → 3.749.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 +27 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_json1_1.js +25 -0
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +2 -1
- package/dist-types/commands/ApplyPendingMaintenanceActionCommand.d.ts +2 -1
- package/dist-types/commands/CreateDataProviderCommand.d.ts +30 -2
- package/dist-types/commands/CreateEndpointCommand.d.ts +5 -4
- package/dist-types/commands/CreateEventSubscriptionCommand.d.ts +1 -2
- package/dist-types/commands/CreateReplicationConfigCommand.d.ts +3 -3
- package/dist-types/commands/CreateReplicationInstanceCommand.d.ts +7 -8
- package/dist-types/commands/CreateReplicationSubnetGroupCommand.d.ts +8 -6
- package/dist-types/commands/DeleteDataProviderCommand.d.ts +14 -0
- package/dist-types/commands/DeleteInstanceProfileCommand.d.ts +2 -2
- package/dist-types/commands/DeleteReplicationConfigCommand.d.ts +4 -3
- package/dist-types/commands/DescribeApplicableIndividualAssessmentsCommand.d.ts +14 -13
- package/dist-types/commands/DescribeDataProvidersCommand.d.ts +16 -1
- package/dist-types/commands/DescribeEndpointSettingsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeEventCategoriesCommand.d.ts +1 -2
- package/dist-types/commands/DescribeEventsCommand.d.ts +1 -2
- package/dist-types/commands/DescribeExtensionPackAssociationsCommand.d.ts +3 -4
- package/dist-types/commands/DescribeInstanceProfilesCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMetadataModelAssessmentsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeMigrationProjectsCommand.d.ts +2 -1
- package/dist-types/commands/DescribePendingMaintenanceActionsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReplicationConfigsCommand.d.ts +2 -1
- package/dist-types/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +3 -5
- package/dist-types/commands/DescribeReplicationTaskIndividualAssessmentsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationsCommand.d.ts +24 -0
- package/dist-types/commands/ExportMetadataModelAssessmentCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +4 -4
- package/dist-types/commands/ModifyDataProviderCommand.d.ts +30 -1
- package/dist-types/commands/ModifyEndpointCommand.d.ts +5 -4
- package/dist-types/commands/ModifyInstanceProfileCommand.d.ts +2 -2
- package/dist-types/commands/ModifyReplicationConfigCommand.d.ts +8 -8
- package/dist-types/commands/MoveReplicationTaskCommand.d.ts +1 -2
- package/dist-types/commands/ReloadTablesCommand.d.ts +2 -2
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +4 -5
- package/dist-types/commands/StartExtensionPackAssociationCommand.d.ts +1 -2
- package/dist-types/commands/StartMetadataModelAssessmentCommand.d.ts +2 -2
- package/dist-types/commands/StartMetadataModelExportAsScriptCommand.d.ts +2 -1
- package/dist-types/commands/StartMetadataModelImportCommand.d.ts +2 -1
- package/dist-types/commands/StartReplicationCommand.d.ts +30 -4
- package/dist-types/commands/StartReplicationTaskAssessmentCommand.d.ts +4 -4
- package/dist-types/commands/StartReplicationTaskAssessmentRunCommand.d.ts +2 -2
- package/dist-types/commands/StopReplicationCommand.d.ts +27 -2
- package/dist-types/commands/UpdateSubscriptionsToEventBridgeCommand.d.ts +11 -9
- package/dist-types/models/models_0.d.ts +1407 -1211
- package/dist-types/models/models_1.d.ts +311 -138
- package/dist-types/ts3.4/commands/DescribeReplicationTaskIndividualAssessmentsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +76 -18
- package/dist-types/ts3.4/models/models_1.d.ts +19 -0
- package/package.json +11 -11
package/dist-cjs/index.js
CHANGED
|
@@ -643,6 +643,10 @@ var DataProviderSettings;
|
|
|
643
643
|
return visitor.DocDbSettings(value.DocDbSettings);
|
|
644
644
|
if (value.MariaDbSettings !== void 0)
|
|
645
645
|
return visitor.MariaDbSettings(value.MariaDbSettings);
|
|
646
|
+
if (value.IbmDb2LuwSettings !== void 0)
|
|
647
|
+
return visitor.IbmDb2LuwSettings(value.IbmDb2LuwSettings);
|
|
648
|
+
if (value.IbmDb2zOsSettings !== void 0)
|
|
649
|
+
return visitor.IbmDb2zOsSettings(value.IbmDb2zOsSettings);
|
|
646
650
|
if (value.MongoDbSettings !== void 0)
|
|
647
651
|
return visitor.MongoDbSettings(value.MongoDbSettings);
|
|
648
652
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -3899,6 +3903,7 @@ var se_StartReplicationMessage = /* @__PURE__ */ __name((input, context) => {
|
|
|
3899
3903
|
CdcStartPosition: [],
|
|
3900
3904
|
CdcStartTime: (_) => _.getTime() / 1e3,
|
|
3901
3905
|
CdcStopPosition: [],
|
|
3906
|
+
PremigrationAssessmentSettings: [],
|
|
3902
3907
|
ReplicationConfigArn: [],
|
|
3903
3908
|
StartReplicationType: []
|
|
3904
3909
|
});
|
|
@@ -4346,6 +4351,27 @@ var de_PendingMaintenanceActions = /* @__PURE__ */ __name((output, context) => {
|
|
|
4346
4351
|
});
|
|
4347
4352
|
return retVal;
|
|
4348
4353
|
}, "de_PendingMaintenanceActions");
|
|
4354
|
+
var de_PremigrationAssessmentStatus = /* @__PURE__ */ __name((output, context) => {
|
|
4355
|
+
return (0, import_smithy_client.take)(output, {
|
|
4356
|
+
AssessmentProgress: import_smithy_client._json,
|
|
4357
|
+
FailOnAssessmentFailure: import_smithy_client.expectBoolean,
|
|
4358
|
+
LastFailureMessage: import_smithy_client.expectString,
|
|
4359
|
+
PremigrationAssessmentRunArn: import_smithy_client.expectString,
|
|
4360
|
+
PremigrationAssessmentRunCreationDate: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4361
|
+
ResultEncryptionMode: import_smithy_client.expectString,
|
|
4362
|
+
ResultKmsKeyArn: import_smithy_client.expectString,
|
|
4363
|
+
ResultLocationBucket: import_smithy_client.expectString,
|
|
4364
|
+
ResultLocationFolder: import_smithy_client.expectString,
|
|
4365
|
+
ResultStatistic: import_smithy_client._json,
|
|
4366
|
+
Status: import_smithy_client.expectString
|
|
4367
|
+
});
|
|
4368
|
+
}, "de_PremigrationAssessmentStatus");
|
|
4369
|
+
var de_PremigrationAssessmentStatusList = /* @__PURE__ */ __name((output, context) => {
|
|
4370
|
+
const retVal = (output || []).filter((e) => e != null).map((entry) => {
|
|
4371
|
+
return de_PremigrationAssessmentStatus(entry, context);
|
|
4372
|
+
});
|
|
4373
|
+
return retVal;
|
|
4374
|
+
}, "de_PremigrationAssessmentStatusList");
|
|
4349
4375
|
var de_ProvisionData = /* @__PURE__ */ __name((output, context) => {
|
|
4350
4376
|
return (0, import_smithy_client.take)(output, {
|
|
4351
4377
|
DateNewProvisioningDataAvailable: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
@@ -4433,6 +4459,7 @@ var de_Replication = /* @__PURE__ */ __name((output, context) => {
|
|
|
4433
4459
|
CdcStartTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
|
|
4434
4460
|
CdcStopPosition: import_smithy_client.expectString,
|
|
4435
4461
|
FailureMessages: import_smithy_client._json,
|
|
4462
|
+
PremigrationAssessmentStatuses: (_) => de_PremigrationAssessmentStatusList(_, context),
|
|
4436
4463
|
ProvisionData: (_) => de_ProvisionData(_, context),
|
|
4437
4464
|
RecoveryCheckpoint: import_smithy_client.expectString,
|
|
4438
4465
|
ReplicationConfigArn: import_smithy_client.expectString,
|
|
@@ -128,6 +128,10 @@ export var DataProviderSettings;
|
|
|
128
128
|
return visitor.DocDbSettings(value.DocDbSettings);
|
|
129
129
|
if (value.MariaDbSettings !== undefined)
|
|
130
130
|
return visitor.MariaDbSettings(value.MariaDbSettings);
|
|
131
|
+
if (value.IbmDb2LuwSettings !== undefined)
|
|
132
|
+
return visitor.IbmDb2LuwSettings(value.IbmDb2LuwSettings);
|
|
133
|
+
if (value.IbmDb2zOsSettings !== undefined)
|
|
134
|
+
return visitor.IbmDb2zOsSettings(value.IbmDb2zOsSettings);
|
|
131
135
|
if (value.MongoDbSettings !== undefined)
|
|
132
136
|
return visitor.MongoDbSettings(value.MongoDbSettings);
|
|
133
137
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
@@ -2551,6 +2551,7 @@ const se_StartReplicationMessage = (input, context) => {
|
|
|
2551
2551
|
CdcStartPosition: [],
|
|
2552
2552
|
CdcStartTime: (_) => _.getTime() / 1000,
|
|
2553
2553
|
CdcStopPosition: [],
|
|
2554
|
+
PremigrationAssessmentSettings: [],
|
|
2554
2555
|
ReplicationConfigArn: [],
|
|
2555
2556
|
StartReplicationType: [],
|
|
2556
2557
|
});
|
|
@@ -3018,6 +3019,29 @@ const de_PendingMaintenanceActions = (output, context) => {
|
|
|
3018
3019
|
});
|
|
3019
3020
|
return retVal;
|
|
3020
3021
|
};
|
|
3022
|
+
const de_PremigrationAssessmentStatus = (output, context) => {
|
|
3023
|
+
return take(output, {
|
|
3024
|
+
AssessmentProgress: _json,
|
|
3025
|
+
FailOnAssessmentFailure: __expectBoolean,
|
|
3026
|
+
LastFailureMessage: __expectString,
|
|
3027
|
+
PremigrationAssessmentRunArn: __expectString,
|
|
3028
|
+
PremigrationAssessmentRunCreationDate: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3029
|
+
ResultEncryptionMode: __expectString,
|
|
3030
|
+
ResultKmsKeyArn: __expectString,
|
|
3031
|
+
ResultLocationBucket: __expectString,
|
|
3032
|
+
ResultLocationFolder: __expectString,
|
|
3033
|
+
ResultStatistic: _json,
|
|
3034
|
+
Status: __expectString,
|
|
3035
|
+
});
|
|
3036
|
+
};
|
|
3037
|
+
const de_PremigrationAssessmentStatusList = (output, context) => {
|
|
3038
|
+
const retVal = (output || [])
|
|
3039
|
+
.filter((e) => e != null)
|
|
3040
|
+
.map((entry) => {
|
|
3041
|
+
return de_PremigrationAssessmentStatus(entry, context);
|
|
3042
|
+
});
|
|
3043
|
+
return retVal;
|
|
3044
|
+
};
|
|
3021
3045
|
const de_ProvisionData = (output, context) => {
|
|
3022
3046
|
return take(output, {
|
|
3023
3047
|
DateNewProvisioningDataAvailable: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
@@ -3107,6 +3131,7 @@ const de_Replication = (output, context) => {
|
|
|
3107
3131
|
CdcStartTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
3108
3132
|
CdcStopPosition: __expectString,
|
|
3109
3133
|
FailureMessages: _json,
|
|
3134
|
+
PremigrationAssessmentStatuses: (_) => de_PremigrationAssessmentStatusList(_, context),
|
|
3110
3135
|
ProvisionData: (_) => de_ProvisionData(_, context),
|
|
3111
3136
|
RecoveryCheckpoint: __expectString,
|
|
3112
3137
|
ReplicationConfigArn: __expectString,
|
|
@@ -32,7 +32,8 @@ declare const AddTagsToResourceCommand_base: {
|
|
|
32
32
|
* reporting to track cost associated with DMS resources, or used in a Condition statement in
|
|
33
33
|
* an IAM policy for DMS. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html">
|
|
34
34
|
* <code>Tag</code>
|
|
35
|
-
* </a> data type
|
|
35
|
+
* </a> data type
|
|
36
|
+
* description.</p>
|
|
36
37
|
* @example
|
|
37
38
|
* Use a bare-bones client and the command you need to make an API call.
|
|
38
39
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const ApplyPendingMaintenanceActionCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Applies a pending maintenance action to a resource (for example, to a replication
|
|
30
|
+
* <p>Applies a pending maintenance action to a resource (for example, to a replication
|
|
31
|
+
* instance).</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -27,8 +27,8 @@ declare const CreateDataProviderCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a data provider using the provided settings. A data provider stores
|
|
31
|
-
*
|
|
30
|
+
* <p>Creates a data provider using the provided settings. A data provider stores a data store
|
|
31
|
+
* type and location information about your database. </p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -90,6 +90,20 @@ declare const CreateDataProviderCommand_base: {
|
|
|
90
90
|
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
91
91
|
* CertificateArn: "STRING_VALUE",
|
|
92
92
|
* },
|
|
93
|
+
* IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
|
|
94
|
+
* ServerName: "STRING_VALUE",
|
|
95
|
+
* Port: Number("int"),
|
|
96
|
+
* DatabaseName: "STRING_VALUE",
|
|
97
|
+
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
98
|
+
* CertificateArn: "STRING_VALUE",
|
|
99
|
+
* },
|
|
100
|
+
* IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
|
|
101
|
+
* ServerName: "STRING_VALUE",
|
|
102
|
+
* Port: Number("int"),
|
|
103
|
+
* DatabaseName: "STRING_VALUE",
|
|
104
|
+
* SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
105
|
+
* CertificateArn: "STRING_VALUE",
|
|
106
|
+
* },
|
|
93
107
|
* MongoDbSettings: { // MongoDbDataProviderSettings
|
|
94
108
|
* ServerName: "STRING_VALUE",
|
|
95
109
|
* Port: Number("int"),
|
|
@@ -169,6 +183,20 @@ declare const CreateDataProviderCommand_base: {
|
|
|
169
183
|
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
170
184
|
* // CertificateArn: "STRING_VALUE",
|
|
171
185
|
* // },
|
|
186
|
+
* // IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
|
|
187
|
+
* // ServerName: "STRING_VALUE",
|
|
188
|
+
* // Port: Number("int"),
|
|
189
|
+
* // DatabaseName: "STRING_VALUE",
|
|
190
|
+
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
191
|
+
* // CertificateArn: "STRING_VALUE",
|
|
192
|
+
* // },
|
|
193
|
+
* // IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
|
|
194
|
+
* // ServerName: "STRING_VALUE",
|
|
195
|
+
* // Port: Number("int"),
|
|
196
|
+
* // DatabaseName: "STRING_VALUE",
|
|
197
|
+
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
198
|
+
* // CertificateArn: "STRING_VALUE",
|
|
199
|
+
* // },
|
|
172
200
|
* // MongoDbSettings: { // MongoDbDataProviderSettings
|
|
173
201
|
* // ServerName: "STRING_VALUE",
|
|
174
202
|
* // Port: Number("int"),
|
|
@@ -30,10 +30,11 @@ declare const CreateEndpointCommand_base: {
|
|
|
30
30
|
* <p>Creates an endpoint using the provided settings.</p>
|
|
31
31
|
* <note>
|
|
32
32
|
* <p>For a MySQL source or target endpoint, don't explicitly specify the database using
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
33
|
+
* the <code>DatabaseName</code> request parameter on the <code>CreateEndpoint</code> API
|
|
34
|
+
* call. Specifying <code>DatabaseName</code> when you create a MySQL endpoint replicates
|
|
35
|
+
* all the task tables to this single database. For MySQL endpoints, you specify the
|
|
36
|
+
* database only when you specify the schema in the table-mapping rules of the DMS
|
|
37
|
+
* task.</p>
|
|
37
38
|
* </note>
|
|
38
39
|
* @example
|
|
39
40
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -40,8 +40,7 @@ declare const CreateEventSubscriptionCommand_base: {
|
|
|
40
40
|
* <code>SourceIdentifier</code>, you will be notified of events generated from all DMS
|
|
41
41
|
* sources belonging to your customer account.</p>
|
|
42
42
|
* <p>For more information about DMS events, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html">Working with Events and
|
|
43
|
-
* Notifications</a> in the <i>Database Migration Service User
|
|
44
|
-
* Guide.</i>
|
|
43
|
+
* Notifications</a> in the <i>Database Migration Service User Guide.</i>
|
|
45
44
|
* </p>
|
|
46
45
|
* @example
|
|
47
46
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -27,9 +27,9 @@ declare const CreateReplicationConfigCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a configuration that you can later provide to configure and start an DMS
|
|
31
|
-
* replication. You can also provide options to validate the configuration inputs
|
|
32
|
-
* replication.</p>
|
|
30
|
+
* <p>Creates a configuration that you can later provide to configure and start an DMS
|
|
31
|
+
* Serverless replication. You can also provide options to validate the configuration inputs
|
|
32
|
+
* before you start the replication.</p>
|
|
33
33
|
* @example
|
|
34
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
35
|
* ```javascript
|
|
@@ -28,15 +28,14 @@ declare const CreateReplicationInstanceCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Creates the replication instance using the specified parameters.</p>
|
|
31
|
-
* <p>DMS requires that your account have certain roles with appropriate permissions
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.IAMPermissions">IAM Permissions Needed to Use DMS</a>.</p>
|
|
31
|
+
* <p>DMS requires that your account have certain roles with appropriate permissions before
|
|
32
|
+
* you can create a replication instance. For information on the required roles, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.APIRole">Creating the IAM Roles to Use With the CLI and DMS API</a>. For information on
|
|
33
|
+
* the required permissions, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Security.html#CHAP_Security.IAMPermissions">IAM
|
|
34
|
+
* Permissions Needed to Use DMS</a>.</p>
|
|
36
35
|
* <note>
|
|
37
|
-
* <p>If you don't specify a version when creating a replication instance, DMS will
|
|
38
|
-
*
|
|
39
|
-
*
|
|
36
|
+
* <p>If you don't specify a version when creating a replication instance, DMS will
|
|
37
|
+
* create the instance using the default engine version. For information about the default
|
|
38
|
+
* engine version, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReleaseNotes.html">Release Notes</a>.</p>
|
|
40
39
|
* </note>
|
|
41
40
|
* @example
|
|
42
41
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -28,12 +28,14 @@ declare const CreateReplicationSubnetGroupCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Creates a replication subnet group given a list of the subnet IDs in a VPC.</p>
|
|
31
|
-
* <p>The VPC needs to have at least one subnet in at least two availability zones in the
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
*
|
|
36
|
-
*
|
|
31
|
+
* <p>The VPC needs to have at least one subnet in at least two availability zones in the
|
|
32
|
+
* Amazon Web Services Region, otherwise the service will throw a
|
|
33
|
+
* <code>ReplicationSubnetGroupDoesNotCoverEnoughAZs</code> exception.</p>
|
|
34
|
+
* <p>If a replication subnet group exists in your Amazon Web Services account, the
|
|
35
|
+
* CreateReplicationSubnetGroup action returns the following error message: The Replication
|
|
36
|
+
* Subnet Group already exists. In this case, delete the existing replication subnet group. To
|
|
37
|
+
* do so, use the <a href="https://docs.aws.amazon.com/en_us/dms/latest/APIReference/API_DeleteReplicationSubnetGroup.html">DeleteReplicationSubnetGroup</a> action. Optionally, choose Subnet groups in the
|
|
38
|
+
* DMS console, then choose your subnet group. Next, choose Delete from Actions.</p>
|
|
37
39
|
* @example
|
|
38
40
|
* Use a bare-bones client and the command you need to make an API call.
|
|
39
41
|
* ```javascript
|
|
@@ -101,6 +101,20 @@ declare const DeleteDataProviderCommand_base: {
|
|
|
101
101
|
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
102
102
|
* // CertificateArn: "STRING_VALUE",
|
|
103
103
|
* // },
|
|
104
|
+
* // IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
|
|
105
|
+
* // ServerName: "STRING_VALUE",
|
|
106
|
+
* // Port: Number("int"),
|
|
107
|
+
* // DatabaseName: "STRING_VALUE",
|
|
108
|
+
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
109
|
+
* // CertificateArn: "STRING_VALUE",
|
|
110
|
+
* // },
|
|
111
|
+
* // IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
|
|
112
|
+
* // ServerName: "STRING_VALUE",
|
|
113
|
+
* // Port: Number("int"),
|
|
114
|
+
* // DatabaseName: "STRING_VALUE",
|
|
115
|
+
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
116
|
+
* // CertificateArn: "STRING_VALUE",
|
|
117
|
+
* // },
|
|
104
118
|
* // MongoDbSettings: { // MongoDbDataProviderSettings
|
|
105
119
|
* // ServerName: "STRING_VALUE",
|
|
106
120
|
* // Port: Number("int"),
|
|
@@ -29,8 +29,8 @@ declare const DeleteInstanceProfileCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Deletes the specified instance profile.</p>
|
|
31
31
|
* <note>
|
|
32
|
-
* <p>All migration projects associated with the instance profile must be deleted or
|
|
33
|
-
* before you can delete the instance profile.</p>
|
|
32
|
+
* <p>All migration projects associated with the instance profile must be deleted or
|
|
33
|
+
* modified before you can delete the instance profile.</p>
|
|
34
34
|
* </note>
|
|
35
35
|
* @example
|
|
36
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -27,9 +27,10 @@ declare const DeleteReplicationConfigCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Deletes an DMS Serverless replication configuration. This effectively deprovisions any
|
|
31
|
-
* replications that use this configuration. You can't delete the configuration for an
|
|
32
|
-
* that is ongoing. You can delete the configuration when the
|
|
30
|
+
* <p>Deletes an DMS Serverless replication configuration. This effectively deprovisions any
|
|
31
|
+
* and all replications that use this configuration. You can't delete the configuration for an
|
|
32
|
+
* DMS Serverless replication that is ongoing. You can delete the configuration when the
|
|
33
|
+
* replication is in a non-RUNNING and non-STARTING state.</p>
|
|
33
34
|
* @example
|
|
34
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
36
|
* ```javascript
|
|
@@ -29,19 +29,20 @@ declare const DescribeApplicableIndividualAssessmentsCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Provides a list of individual assessments that you can specify for a new premigration
|
|
31
31
|
* assessment run, given one or more parameters.</p>
|
|
32
|
-
* <p>If you specify an existing migration task, this operation provides the default
|
|
33
|
-
* assessments you can specify for that task. Otherwise, the specified parameters
|
|
34
|
-
* of a possible migration task on which to base a premigration assessment
|
|
35
|
-
*
|
|
36
|
-
*
|
|
37
|
-
*
|
|
38
|
-
*
|
|
39
|
-
*
|
|
40
|
-
*
|
|
41
|
-
* specify
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
32
|
+
* <p>If you specify an existing migration task, this operation provides the default
|
|
33
|
+
* individual assessments you can specify for that task. Otherwise, the specified parameters
|
|
34
|
+
* model elements of a possible migration task on which to base a premigration assessment
|
|
35
|
+
* run.</p>
|
|
36
|
+
* <p>To use these migration task modeling parameters, you must specify an existing
|
|
37
|
+
* replication instance, a source database engine, a target database engine, and a migration
|
|
38
|
+
* type. This combination of parameters potentially limits the default individual assessments
|
|
39
|
+
* available for an assessment run created for a corresponding migration task.</p>
|
|
40
|
+
* <p>If you specify no parameters, this operation provides a list of all possible individual
|
|
41
|
+
* assessments that you can specify for an assessment run. If you specify any one of the task
|
|
42
|
+
* modeling parameters, you must specify all of them or the operation cannot provide a list of
|
|
43
|
+
* individual assessments. The only parameter that you can specify alone is for an existing
|
|
44
|
+
* migration task. The specified task definition then determines the default list of
|
|
45
|
+
* individual assessments that you can specify in an assessment run for the task.</p>
|
|
45
46
|
* @example
|
|
46
47
|
* Use a bare-bones client and the command you need to make an API call.
|
|
47
48
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const DescribeDataProvidersCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns a paginated list of data providers for your account in the current
|
|
30
|
+
* <p>Returns a paginated list of data providers for your account in the current
|
|
31
|
+
* region.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -108,6 +109,20 @@ declare const DescribeDataProvidersCommand_base: {
|
|
|
108
109
|
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
109
110
|
* // CertificateArn: "STRING_VALUE",
|
|
110
111
|
* // },
|
|
112
|
+
* // IbmDb2LuwSettings: { // IbmDb2LuwDataProviderSettings
|
|
113
|
+
* // ServerName: "STRING_VALUE",
|
|
114
|
+
* // Port: Number("int"),
|
|
115
|
+
* // DatabaseName: "STRING_VALUE",
|
|
116
|
+
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
117
|
+
* // CertificateArn: "STRING_VALUE",
|
|
118
|
+
* // },
|
|
119
|
+
* // IbmDb2zOsSettings: { // IbmDb2zOsDataProviderSettings
|
|
120
|
+
* // ServerName: "STRING_VALUE",
|
|
121
|
+
* // Port: Number("int"),
|
|
122
|
+
* // DatabaseName: "STRING_VALUE",
|
|
123
|
+
* // SslMode: "none" || "require" || "verify-ca" || "verify-full",
|
|
124
|
+
* // CertificateArn: "STRING_VALUE",
|
|
125
|
+
* // },
|
|
111
126
|
* // MongoDbSettings: { // MongoDbDataProviderSettings
|
|
112
127
|
* // ServerName: "STRING_VALUE",
|
|
113
128
|
* // Port: Number("int"),
|
|
@@ -27,8 +27,8 @@ declare const DescribeEndpointSettingsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns information about the possible endpoint settings available
|
|
31
|
-
*
|
|
30
|
+
* <p>Returns information about the possible endpoint settings available when you create an
|
|
31
|
+
* endpoint for a specific database engine.</p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -29,8 +29,7 @@ declare const DescribeEventCategoriesCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p>Lists categories for all event source types, or, if specified, for a specified source
|
|
31
31
|
* type. You can see a list of the event categories and source types in <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html">Working with Events
|
|
32
|
-
* and Notifications</a> in the <i>Database Migration Service User
|
|
33
|
-
* Guide.</i>
|
|
32
|
+
* and Notifications</a> in the <i>Database Migration Service User Guide.</i>
|
|
34
33
|
* </p>
|
|
35
34
|
* @example
|
|
36
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -29,8 +29,7 @@ declare const DescribeEventsCommand_base: {
|
|
|
29
29
|
/**
|
|
30
30
|
* <p> Lists events for a given source identifier and source type. You can also specify a
|
|
31
31
|
* start and end time. For more information on DMS events, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Events.html">Working with Events and
|
|
32
|
-
* Notifications</a> in the <i>Database Migration Service User
|
|
33
|
-
* Guide.</i>
|
|
32
|
+
* Notifications</a> in the <i>Database Migration Service User Guide.</i>
|
|
34
33
|
* </p>
|
|
35
34
|
* @example
|
|
36
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -27,10 +27,9 @@ declare const DescribeExtensionPackAssociationsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns a paginated list of extension pack associations for the specified migration
|
|
31
|
-
* An extension pack is an add-on module
|
|
32
|
-
*
|
|
33
|
-
* to the target database.</p>
|
|
30
|
+
* <p>Returns a paginated list of extension pack associations for the specified migration
|
|
31
|
+
* project. An extension pack is an add-on module that emulates functions present in a source
|
|
32
|
+
* database that are required when converting objects to the target database.</p>
|
|
34
33
|
* @example
|
|
35
34
|
* Use a bare-bones client and the command you need to make an API call.
|
|
36
35
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const DescribeInstanceProfilesCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns a paginated list of instance profiles for your account in the current
|
|
30
|
+
* <p>Returns a paginated list of instance profiles for your account in the current
|
|
31
|
+
* region.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const DescribeMetadataModelAssessmentsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns a paginated list of metadata model assessments for your account in the current
|
|
30
|
+
* <p>Returns a paginated list of metadata model assessments for your account in the current
|
|
31
|
+
* region.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const DescribeMigrationProjectsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns a paginated list of migration projects for your account in the current
|
|
30
|
+
* <p>Returns a paginated list of migration projects for your account in the current
|
|
31
|
+
* region.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const DescribePendingMaintenanceActionsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>
|
|
30
|
+
* <p>Returns a list of upcoming maintenance events for replication instances in your account
|
|
31
|
+
* in the current Region.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -27,7 +27,8 @@ declare const DescribeReplicationConfigsCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Returns one or more existing DMS Serverless replication configurations as a list of
|
|
30
|
+
* <p>Returns one or more existing DMS Serverless replication configurations as a list of
|
|
31
|
+
* structures.</p>
|
|
31
32
|
* @example
|
|
32
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
34
|
* ```javascript
|
|
@@ -28,11 +28,9 @@ declare const DescribeReplicationTaskAssessmentResultsCommand_base: {
|
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
30
|
* <p>Returns the task assessment results from the Amazon S3 bucket that DMS creates in your
|
|
31
|
-
*
|
|
32
|
-
* latest
|
|
33
|
-
*
|
|
34
|
-
* <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html">Creating a task assessment report</a>
|
|
35
|
-
* in the <i>Database Migration Service User Guide</i>.</p>
|
|
31
|
+
* Amazon Web Services account. This action always returns the latest results.</p>
|
|
32
|
+
* <p>For more information about DMS task assessments, see <a href="https://docs.aws.amazon.com/dms/latest/userguide/CHAP_Tasks.AssessmentReport.html">Creating a task assessment
|
|
33
|
+
* report</a> in the <i>Database Migration Service User Guide</i>.</p>
|
|
36
34
|
* @example
|
|
37
35
|
* Use a bare-bones client and the command you need to make an API call.
|
|
38
36
|
* ```javascript
|
|
@@ -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 { DescribeReplicationTaskIndividualAssessmentsMessage, DescribeReplicationTaskIndividualAssessmentsResponse } from "../models/
|
|
4
|
+
import { DescribeReplicationTaskIndividualAssessmentsMessage, DescribeReplicationTaskIndividualAssessmentsResponse } from "../models/models_1";
|
|
5
5
|
/**
|
|
6
6
|
* @public
|
|
7
7
|
*/
|
|
@@ -67,6 +67,30 @@ declare const DescribeReplicationsCommand_base: {
|
|
|
67
67
|
* // DateNewProvisioningDataAvailable: new Date("TIMESTAMP"),
|
|
68
68
|
* // ReasonForNewProvisioningData: "STRING_VALUE",
|
|
69
69
|
* // },
|
|
70
|
+
* // PremigrationAssessmentStatuses: [ // PremigrationAssessmentStatusList
|
|
71
|
+
* // { // PremigrationAssessmentStatus
|
|
72
|
+
* // PremigrationAssessmentRunArn: "STRING_VALUE",
|
|
73
|
+
* // FailOnAssessmentFailure: true || false,
|
|
74
|
+
* // Status: "STRING_VALUE",
|
|
75
|
+
* // PremigrationAssessmentRunCreationDate: new Date("TIMESTAMP"),
|
|
76
|
+
* // AssessmentProgress: { // ReplicationTaskAssessmentRunProgress
|
|
77
|
+
* // IndividualAssessmentCount: Number("int"),
|
|
78
|
+
* // IndividualAssessmentCompletedCount: Number("int"),
|
|
79
|
+
* // },
|
|
80
|
+
* // LastFailureMessage: "STRING_VALUE",
|
|
81
|
+
* // ResultLocationBucket: "STRING_VALUE",
|
|
82
|
+
* // ResultLocationFolder: "STRING_VALUE",
|
|
83
|
+
* // ResultEncryptionMode: "STRING_VALUE",
|
|
84
|
+
* // ResultKmsKeyArn: "STRING_VALUE",
|
|
85
|
+
* // ResultStatistic: { // ReplicationTaskAssessmentRunResultStatistic
|
|
86
|
+
* // Passed: Number("int"),
|
|
87
|
+
* // Failed: Number("int"),
|
|
88
|
+
* // Error: Number("int"),
|
|
89
|
+
* // Warning: Number("int"),
|
|
90
|
+
* // Cancelled: Number("int"),
|
|
91
|
+
* // },
|
|
92
|
+
* // },
|
|
93
|
+
* // ],
|
|
70
94
|
* // StopReason: "STRING_VALUE",
|
|
71
95
|
* // FailureMessages: [ // StringList
|
|
72
96
|
* // "STRING_VALUE",
|
|
@@ -27,8 +27,8 @@ declare const ExportMetadataModelAssessmentCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Saves a copy of a database migration assessment report to your Amazon S3 bucket. DMS can
|
|
31
|
-
* your assessment report as a comma-separated value (CSV) or a PDF file. </p>
|
|
30
|
+
* <p>Saves a copy of a database migration assessment report to your Amazon S3 bucket. DMS can
|
|
31
|
+
* save your assessment report as a comma-separated value (CSV) or a PDF file. </p>
|
|
32
32
|
* @example
|
|
33
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
34
34
|
* ```javascript
|
|
@@ -27,11 +27,11 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Lists all metadata tags attached to an DMS resource, including
|
|
31
|
-
*
|
|
32
|
-
* For more information, see <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html">
|
|
30
|
+
* <p>Lists all metadata tags attached to an DMS resource, including replication instance,
|
|
31
|
+
* endpoint, subnet group, and migration task. For more information, see <a href="https://docs.aws.amazon.com/dms/latest/APIReference/API_Tag.html">
|
|
33
32
|
* <code>Tag</code>
|
|
34
|
-
* </a>
|
|
33
|
+
* </a>
|
|
34
|
+
* data type description.</p>
|
|
35
35
|
* @example
|
|
36
36
|
* Use a bare-bones client and the command you need to make an API call.
|
|
37
37
|
* ```javascript
|