@aws-sdk/client-database-migration-service 3.745.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 +23 -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 +2 -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/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 +2 -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 -2
- 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 +2 -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 +1286 -1122
- package/dist-types/models/models_1.d.ts +224 -137
- package/dist-types/ts3.4/commands/DescribeReplicationTaskIndividualAssessmentsCommand.d.ts +4 -2
- package/dist-types/ts3.4/models/models_0.d.ts +14 -5
- package/dist-types/ts3.4/models/models_1.d.ts +6 -0
- package/package.json +11 -11
|
@@ -5,8 +5,10 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../DatabaseMigrationServiceClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
8
|
+
import {
|
|
9
|
+
DescribeReplicationTaskIndividualAssessmentsMessage,
|
|
10
|
+
DescribeReplicationTaskIndividualAssessmentsResponse,
|
|
11
|
+
} from "../models/models_1";
|
|
10
12
|
export { __MetadataBearer };
|
|
11
13
|
export { $Command };
|
|
12
14
|
export interface DescribeReplicationTaskIndividualAssessmentsCommandInput
|
|
@@ -2165,6 +2165,19 @@ export interface DescribeReplicationsMessage {
|
|
|
2165
2165
|
MaxRecords?: number | undefined;
|
|
2166
2166
|
Marker?: string | undefined;
|
|
2167
2167
|
}
|
|
2168
|
+
export interface PremigrationAssessmentStatus {
|
|
2169
|
+
PremigrationAssessmentRunArn?: string | undefined;
|
|
2170
|
+
FailOnAssessmentFailure?: boolean | undefined;
|
|
2171
|
+
Status?: string | undefined;
|
|
2172
|
+
PremigrationAssessmentRunCreationDate?: Date | undefined;
|
|
2173
|
+
AssessmentProgress?: ReplicationTaskAssessmentRunProgress | undefined;
|
|
2174
|
+
LastFailureMessage?: string | undefined;
|
|
2175
|
+
ResultLocationBucket?: string | undefined;
|
|
2176
|
+
ResultLocationFolder?: string | undefined;
|
|
2177
|
+
ResultEncryptionMode?: string | undefined;
|
|
2178
|
+
ResultKmsKeyArn?: string | undefined;
|
|
2179
|
+
ResultStatistic?: ReplicationTaskAssessmentRunResultStatistic | undefined;
|
|
2180
|
+
}
|
|
2168
2181
|
export interface ProvisionData {
|
|
2169
2182
|
ProvisionState?: string | undefined;
|
|
2170
2183
|
ProvisionedCapacityUnits?: number | undefined;
|
|
@@ -2194,6 +2207,7 @@ export interface Replication {
|
|
|
2194
2207
|
ReplicationType?: MigrationTypeValue | undefined;
|
|
2195
2208
|
Status?: string | undefined;
|
|
2196
2209
|
ProvisionData?: ProvisionData | undefined;
|
|
2210
|
+
PremigrationAssessmentStatuses?: PremigrationAssessmentStatus[] | undefined;
|
|
2197
2211
|
StopReason?: string | undefined;
|
|
2198
2212
|
FailureMessages?: string[] | undefined;
|
|
2199
2213
|
ReplicationStats?: ReplicationStats | undefined;
|
|
@@ -2286,11 +2300,6 @@ export interface DescribeReplicationTaskAssessmentRunsResponse {
|
|
|
2286
2300
|
Marker?: string | undefined;
|
|
2287
2301
|
ReplicationTaskAssessmentRuns?: ReplicationTaskAssessmentRun[] | undefined;
|
|
2288
2302
|
}
|
|
2289
|
-
export interface DescribeReplicationTaskIndividualAssessmentsMessage {
|
|
2290
|
-
Filters?: Filter[] | undefined;
|
|
2291
|
-
MaxRecords?: number | undefined;
|
|
2292
|
-
Marker?: string | undefined;
|
|
2293
|
-
}
|
|
2294
2303
|
export declare const CreateDataMigrationMessageFilterSensitiveLog: (
|
|
2295
2304
|
obj: CreateDataMigrationMessage
|
|
2296
2305
|
) => any;
|
|
@@ -50,6 +50,11 @@ import {
|
|
|
50
50
|
TargetDataSetting,
|
|
51
51
|
TimestreamSettings,
|
|
52
52
|
} from "./models_0";
|
|
53
|
+
export interface DescribeReplicationTaskIndividualAssessmentsMessage {
|
|
54
|
+
Filters?: Filter[] | undefined;
|
|
55
|
+
MaxRecords?: number | undefined;
|
|
56
|
+
Marker?: string | undefined;
|
|
57
|
+
}
|
|
53
58
|
export interface ReplicationTaskIndividualAssessment {
|
|
54
59
|
ReplicationTaskIndividualAssessmentArn?: string | undefined;
|
|
55
60
|
ReplicationTaskAssessmentRunArn?: string | undefined;
|
|
@@ -444,6 +449,7 @@ export interface StartRecommendationsRequest {
|
|
|
444
449
|
export interface StartReplicationMessage {
|
|
445
450
|
ReplicationConfigArn: string | undefined;
|
|
446
451
|
StartReplicationType: string | undefined;
|
|
452
|
+
PremigrationAssessmentSettings?: string | undefined;
|
|
447
453
|
CdcStartTime?: Date | undefined;
|
|
448
454
|
CdcStartPosition?: string | undefined;
|
|
449
455
|
CdcStopPosition?: string | 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.749.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,38 +20,38 @@
|
|
|
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.749.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.749.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.749.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.749.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.3",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.4",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.5",
|
|
42
42
|
"@smithy/middleware-serde": "^4.0.2",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.2",
|
|
46
46
|
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.1.
|
|
47
|
+
"@smithy/smithy-client": "^4.1.4",
|
|
48
48
|
"@smithy/types": "^4.1.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.5",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.5",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.1",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.1",
|
|
57
57
|
"@smithy/util-retry": "^4.0.1",
|