@aws-sdk/client-database-migration-service 3.281.0 → 3.286.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/README.md +32 -0
- package/dist-cjs/DatabaseMigrationService.js +60 -0
- package/dist-cjs/commands/BatchStartRecommendationsCommand.js +46 -0
- package/dist-cjs/commands/DescribeRecommendationLimitationsCommand.js +46 -0
- package/dist-cjs/commands/DescribeRecommendationsCommand.js +46 -0
- package/dist-cjs/commands/StartRecommendationsCommand.js +46 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +70 -4
- package/dist-cjs/pagination/DescribeRecommendationLimitationsPaginator.js +36 -0
- package/dist-cjs/pagination/DescribeRecommendationsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_json1_1.js +363 -3
- package/dist-es/DatabaseMigrationService.js +60 -0
- package/dist-es/commands/BatchStartRecommendationsCommand.js +42 -0
- package/dist-es/commands/DescribeRecommendationLimitationsCommand.js +42 -0
- package/dist-es/commands/DescribeRecommendationsCommand.js +42 -0
- package/dist-es/commands/StartRecommendationsCommand.js +42 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +49 -0
- package/dist-es/pagination/DescribeRecommendationLimitationsPaginator.js +32 -0
- package/dist-es/pagination/DescribeRecommendationsPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_json1_1.js +352 -0
- package/dist-types/DatabaseMigrationService.d.ts +42 -8
- package/dist-types/DatabaseMigrationServiceClient.d.ts +6 -2
- package/dist-types/commands/AddTagsToResourceCommand.d.ts +1 -1
- package/dist-types/commands/BatchStartRecommendationsCommand.d.ts +48 -0
- package/dist-types/commands/DescribeFleetAdvisorLsaAnalysisCommand.d.ts +2 -3
- package/dist-types/commands/DescribeRecommendationLimitationsCommand.d.ts +44 -0
- package/dist-types/commands/DescribeRecommendationsCommand.d.ts +44 -0
- package/dist-types/commands/DescribeSchemasCommand.d.ts +0 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ModifyReplicationInstanceCommand.d.ts +0 -1
- package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartRecommendationsCommand.d.ts +45 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +560 -108
- package/dist-types/pagination/DescribeRecommendationLimitationsPaginator.d.ts +4 -0
- package/dist-types/pagination/DescribeRecommendationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +12 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +74 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/BatchStartRecommendationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeRecommendationLimitationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/DescribeRecommendationsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/StartRecommendationsCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +137 -7
- package/dist-types/ts3.4/pagination/DescribeRecommendationLimitationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeRecommendationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +48 -0
- package/package.json +17 -17
|
@@ -47,6 +47,32 @@ export interface ResourcePendingMaintenanceActions {
|
|
|
47
47
|
export interface ApplyPendingMaintenanceActionResponse {
|
|
48
48
|
ResourcePendingMaintenanceActions?: ResourcePendingMaintenanceActions;
|
|
49
49
|
}
|
|
50
|
+
export interface RecommendationSettings {
|
|
51
|
+
InstanceSizingType: string | undefined;
|
|
52
|
+
WorkloadType: string | undefined;
|
|
53
|
+
}
|
|
54
|
+
export interface StartRecommendationsRequestEntry {
|
|
55
|
+
DatabaseId: string | undefined;
|
|
56
|
+
Settings: RecommendationSettings | undefined;
|
|
57
|
+
}
|
|
58
|
+
export interface BatchStartRecommendationsRequest {
|
|
59
|
+
Data?: StartRecommendationsRequestEntry[];
|
|
60
|
+
}
|
|
61
|
+
export interface BatchStartRecommendationsErrorEntry {
|
|
62
|
+
DatabaseId?: string;
|
|
63
|
+
Message?: string;
|
|
64
|
+
Code?: string;
|
|
65
|
+
}
|
|
66
|
+
export interface BatchStartRecommendationsResponse {
|
|
67
|
+
ErrorEntries?: BatchStartRecommendationsErrorEntry[];
|
|
68
|
+
}
|
|
69
|
+
export declare class InvalidResourceStateFault extends __BaseException {
|
|
70
|
+
readonly name: "InvalidResourceStateFault";
|
|
71
|
+
readonly $fault: "client";
|
|
72
|
+
constructor(
|
|
73
|
+
opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>
|
|
74
|
+
);
|
|
75
|
+
}
|
|
50
76
|
export interface CancelReplicationTaskAssessmentRunMessage {
|
|
51
77
|
ReplicationTaskAssessmentRunArn: string | undefined;
|
|
52
78
|
}
|
|
@@ -71,13 +97,6 @@ export interface ReplicationTaskAssessmentRun {
|
|
|
71
97
|
export interface CancelReplicationTaskAssessmentRunResponse {
|
|
72
98
|
ReplicationTaskAssessmentRun?: ReplicationTaskAssessmentRun;
|
|
73
99
|
}
|
|
74
|
-
export declare class InvalidResourceStateFault extends __BaseException {
|
|
75
|
-
readonly name: "InvalidResourceStateFault";
|
|
76
|
-
readonly $fault: "client";
|
|
77
|
-
constructor(
|
|
78
|
-
opts: __ExceptionOptionType<InvalidResourceStateFault, __BaseException>
|
|
79
|
-
);
|
|
80
|
-
}
|
|
81
100
|
export interface DmsTransferSettings {
|
|
82
101
|
ServiceAccessRoleArn?: string;
|
|
83
102
|
BucketName?: string;
|
|
@@ -1221,6 +1240,7 @@ export interface DescribeOrderableReplicationInstancesMessage {
|
|
|
1221
1240
|
}
|
|
1222
1241
|
export declare enum ReleaseStatusValues {
|
|
1223
1242
|
BETA = "beta",
|
|
1243
|
+
PROD = "prod",
|
|
1224
1244
|
}
|
|
1225
1245
|
export interface OrderableReplicationInstance {
|
|
1226
1246
|
EngineVersion?: string;
|
|
@@ -1247,6 +1267,66 @@ export interface DescribePendingMaintenanceActionsResponse {
|
|
|
1247
1267
|
PendingMaintenanceActions?: ResourcePendingMaintenanceActions[];
|
|
1248
1268
|
Marker?: string;
|
|
1249
1269
|
}
|
|
1270
|
+
export interface DescribeRecommendationLimitationsRequest {
|
|
1271
|
+
Filters?: Filter[];
|
|
1272
|
+
MaxRecords?: number;
|
|
1273
|
+
NextToken?: string;
|
|
1274
|
+
}
|
|
1275
|
+
export interface Limitation {
|
|
1276
|
+
DatabaseId?: string;
|
|
1277
|
+
EngineName?: string;
|
|
1278
|
+
Name?: string;
|
|
1279
|
+
Description?: string;
|
|
1280
|
+
Impact?: string;
|
|
1281
|
+
Type?: string;
|
|
1282
|
+
}
|
|
1283
|
+
export interface DescribeRecommendationLimitationsResponse {
|
|
1284
|
+
NextToken?: string;
|
|
1285
|
+
Limitations?: Limitation[];
|
|
1286
|
+
}
|
|
1287
|
+
export interface DescribeRecommendationsRequest {
|
|
1288
|
+
Filters?: Filter[];
|
|
1289
|
+
MaxRecords?: number;
|
|
1290
|
+
NextToken?: string;
|
|
1291
|
+
}
|
|
1292
|
+
export interface RdsRequirements {
|
|
1293
|
+
EngineEdition?: string;
|
|
1294
|
+
InstanceVcpu?: number;
|
|
1295
|
+
InstanceMemory?: number;
|
|
1296
|
+
StorageSize?: number;
|
|
1297
|
+
StorageIops?: number;
|
|
1298
|
+
DeploymentOption?: string;
|
|
1299
|
+
}
|
|
1300
|
+
export interface RdsConfiguration {
|
|
1301
|
+
EngineEdition?: string;
|
|
1302
|
+
InstanceType?: string;
|
|
1303
|
+
InstanceVcpu?: number;
|
|
1304
|
+
InstanceMemory?: number;
|
|
1305
|
+
StorageType?: string;
|
|
1306
|
+
StorageSize?: number;
|
|
1307
|
+
StorageIops?: number;
|
|
1308
|
+
DeploymentOption?: string;
|
|
1309
|
+
}
|
|
1310
|
+
export interface RdsRecommendation {
|
|
1311
|
+
RequirementsToTarget?: RdsRequirements;
|
|
1312
|
+
TargetConfiguration?: RdsConfiguration;
|
|
1313
|
+
}
|
|
1314
|
+
export interface RecommendationData {
|
|
1315
|
+
RdsEngine?: RdsRecommendation;
|
|
1316
|
+
}
|
|
1317
|
+
export interface Recommendation {
|
|
1318
|
+
DatabaseId?: string;
|
|
1319
|
+
EngineName?: string;
|
|
1320
|
+
CreatedDate?: string;
|
|
1321
|
+
Status?: string;
|
|
1322
|
+
Preferred?: boolean;
|
|
1323
|
+
Settings?: RecommendationSettings;
|
|
1324
|
+
Data?: RecommendationData;
|
|
1325
|
+
}
|
|
1326
|
+
export interface DescribeRecommendationsResponse {
|
|
1327
|
+
NextToken?: string;
|
|
1328
|
+
Recommendations?: Recommendation[];
|
|
1329
|
+
}
|
|
1250
1330
|
export interface DescribeRefreshSchemasStatusMessage {
|
|
1251
1331
|
EndpointArn: string | undefined;
|
|
1252
1332
|
}
|
|
@@ -1566,6 +1646,10 @@ export interface RunFleetAdvisorLsaAnalysisResponse {
|
|
|
1566
1646
|
LsaAnalysisId?: string;
|
|
1567
1647
|
Status?: string;
|
|
1568
1648
|
}
|
|
1649
|
+
export interface StartRecommendationsRequest {
|
|
1650
|
+
DatabaseId: string | undefined;
|
|
1651
|
+
Settings: RecommendationSettings | undefined;
|
|
1652
|
+
}
|
|
1569
1653
|
export declare enum StartReplicationTaskTypeValue {
|
|
1570
1654
|
RELOAD_TARGET = "reload-target",
|
|
1571
1655
|
RESUME_PROCESSING = "resume-processing",
|
|
@@ -1645,6 +1729,21 @@ export declare const ResourcePendingMaintenanceActionsFilterSensitiveLog: (
|
|
|
1645
1729
|
export declare const ApplyPendingMaintenanceActionResponseFilterSensitiveLog: (
|
|
1646
1730
|
obj: ApplyPendingMaintenanceActionResponse
|
|
1647
1731
|
) => any;
|
|
1732
|
+
export declare const RecommendationSettingsFilterSensitiveLog: (
|
|
1733
|
+
obj: RecommendationSettings
|
|
1734
|
+
) => any;
|
|
1735
|
+
export declare const StartRecommendationsRequestEntryFilterSensitiveLog: (
|
|
1736
|
+
obj: StartRecommendationsRequestEntry
|
|
1737
|
+
) => any;
|
|
1738
|
+
export declare const BatchStartRecommendationsRequestFilterSensitiveLog: (
|
|
1739
|
+
obj: BatchStartRecommendationsRequest
|
|
1740
|
+
) => any;
|
|
1741
|
+
export declare const BatchStartRecommendationsErrorEntryFilterSensitiveLog: (
|
|
1742
|
+
obj: BatchStartRecommendationsErrorEntry
|
|
1743
|
+
) => any;
|
|
1744
|
+
export declare const BatchStartRecommendationsResponseFilterSensitiveLog: (
|
|
1745
|
+
obj: BatchStartRecommendationsResponse
|
|
1746
|
+
) => any;
|
|
1648
1747
|
export declare const CancelReplicationTaskAssessmentRunMessageFilterSensitiveLog: (
|
|
1649
1748
|
obj: CancelReplicationTaskAssessmentRunMessage
|
|
1650
1749
|
) => any;
|
|
@@ -1982,6 +2081,34 @@ export declare const DescribePendingMaintenanceActionsMessageFilterSensitiveLog:
|
|
|
1982
2081
|
export declare const DescribePendingMaintenanceActionsResponseFilterSensitiveLog: (
|
|
1983
2082
|
obj: DescribePendingMaintenanceActionsResponse
|
|
1984
2083
|
) => any;
|
|
2084
|
+
export declare const DescribeRecommendationLimitationsRequestFilterSensitiveLog: (
|
|
2085
|
+
obj: DescribeRecommendationLimitationsRequest
|
|
2086
|
+
) => any;
|
|
2087
|
+
export declare const LimitationFilterSensitiveLog: (obj: Limitation) => any;
|
|
2088
|
+
export declare const DescribeRecommendationLimitationsResponseFilterSensitiveLog: (
|
|
2089
|
+
obj: DescribeRecommendationLimitationsResponse
|
|
2090
|
+
) => any;
|
|
2091
|
+
export declare const DescribeRecommendationsRequestFilterSensitiveLog: (
|
|
2092
|
+
obj: DescribeRecommendationsRequest
|
|
2093
|
+
) => any;
|
|
2094
|
+
export declare const RdsRequirementsFilterSensitiveLog: (
|
|
2095
|
+
obj: RdsRequirements
|
|
2096
|
+
) => any;
|
|
2097
|
+
export declare const RdsConfigurationFilterSensitiveLog: (
|
|
2098
|
+
obj: RdsConfiguration
|
|
2099
|
+
) => any;
|
|
2100
|
+
export declare const RdsRecommendationFilterSensitiveLog: (
|
|
2101
|
+
obj: RdsRecommendation
|
|
2102
|
+
) => any;
|
|
2103
|
+
export declare const RecommendationDataFilterSensitiveLog: (
|
|
2104
|
+
obj: RecommendationData
|
|
2105
|
+
) => any;
|
|
2106
|
+
export declare const RecommendationFilterSensitiveLog: (
|
|
2107
|
+
obj: Recommendation
|
|
2108
|
+
) => any;
|
|
2109
|
+
export declare const DescribeRecommendationsResponseFilterSensitiveLog: (
|
|
2110
|
+
obj: DescribeRecommendationsResponse
|
|
2111
|
+
) => any;
|
|
1985
2112
|
export declare const DescribeRefreshSchemasStatusMessageFilterSensitiveLog: (
|
|
1986
2113
|
obj: DescribeRefreshSchemasStatusMessage
|
|
1987
2114
|
) => any;
|
|
@@ -2135,6 +2262,9 @@ export declare const RemoveTagsFromResourceResponseFilterSensitiveLog: (
|
|
|
2135
2262
|
export declare const RunFleetAdvisorLsaAnalysisResponseFilterSensitiveLog: (
|
|
2136
2263
|
obj: RunFleetAdvisorLsaAnalysisResponse
|
|
2137
2264
|
) => any;
|
|
2265
|
+
export declare const StartRecommendationsRequestFilterSensitiveLog: (
|
|
2266
|
+
obj: StartRecommendationsRequest
|
|
2267
|
+
) => any;
|
|
2138
2268
|
export declare const StartReplicationTaskMessageFilterSensitiveLog: (
|
|
2139
2269
|
obj: StartReplicationTaskMessage
|
|
2140
2270
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeRecommendationLimitationsCommandInput,
|
|
4
|
+
DescribeRecommendationLimitationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeRecommendationLimitationsCommand";
|
|
6
|
+
import { DatabaseMigrationServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeRecommendationLimitations(
|
|
8
|
+
config: DatabaseMigrationServicePaginationConfiguration,
|
|
9
|
+
input: DescribeRecommendationLimitationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeRecommendationLimitationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeRecommendationsCommandInput,
|
|
4
|
+
DescribeRecommendationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeRecommendationsCommand";
|
|
6
|
+
import { DatabaseMigrationServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeRecommendations(
|
|
8
|
+
config: DatabaseMigrationServicePaginationConfiguration,
|
|
9
|
+
input: DescribeRecommendationsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeRecommendationsCommandOutput>;
|
|
@@ -14,6 +14,8 @@ export * from "./DescribeFleetAdvisorSchemaObjectSummaryPaginator";
|
|
|
14
14
|
export * from "./DescribeFleetAdvisorSchemasPaginator";
|
|
15
15
|
export * from "./DescribeOrderableReplicationInstancesPaginator";
|
|
16
16
|
export * from "./DescribePendingMaintenanceActionsPaginator";
|
|
17
|
+
export * from "./DescribeRecommendationLimitationsPaginator";
|
|
18
|
+
export * from "./DescribeRecommendationsPaginator";
|
|
17
19
|
export * from "./DescribeReplicationInstanceTaskLogsPaginator";
|
|
18
20
|
export * from "./DescribeReplicationInstancesPaginator";
|
|
19
21
|
export * from "./DescribeReplicationSubnetGroupsPaginator";
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
ApplyPendingMaintenanceActionCommandInput,
|
|
12
12
|
ApplyPendingMaintenanceActionCommandOutput,
|
|
13
13
|
} from "../commands/ApplyPendingMaintenanceActionCommand";
|
|
14
|
+
import {
|
|
15
|
+
BatchStartRecommendationsCommandInput,
|
|
16
|
+
BatchStartRecommendationsCommandOutput,
|
|
17
|
+
} from "../commands/BatchStartRecommendationsCommand";
|
|
14
18
|
import {
|
|
15
19
|
CancelReplicationTaskAssessmentRunCommandInput,
|
|
16
20
|
CancelReplicationTaskAssessmentRunCommandOutput,
|
|
@@ -147,6 +151,14 @@ import {
|
|
|
147
151
|
DescribePendingMaintenanceActionsCommandInput,
|
|
148
152
|
DescribePendingMaintenanceActionsCommandOutput,
|
|
149
153
|
} from "../commands/DescribePendingMaintenanceActionsCommand";
|
|
154
|
+
import {
|
|
155
|
+
DescribeRecommendationLimitationsCommandInput,
|
|
156
|
+
DescribeRecommendationLimitationsCommandOutput,
|
|
157
|
+
} from "../commands/DescribeRecommendationLimitationsCommand";
|
|
158
|
+
import {
|
|
159
|
+
DescribeRecommendationsCommandInput,
|
|
160
|
+
DescribeRecommendationsCommandOutput,
|
|
161
|
+
} from "../commands/DescribeRecommendationsCommand";
|
|
150
162
|
import {
|
|
151
163
|
DescribeRefreshSchemasStatusCommandInput,
|
|
152
164
|
DescribeRefreshSchemasStatusCommandOutput,
|
|
@@ -239,6 +251,10 @@ import {
|
|
|
239
251
|
RunFleetAdvisorLsaAnalysisCommandInput,
|
|
240
252
|
RunFleetAdvisorLsaAnalysisCommandOutput,
|
|
241
253
|
} from "../commands/RunFleetAdvisorLsaAnalysisCommand";
|
|
254
|
+
import {
|
|
255
|
+
StartRecommendationsCommandInput,
|
|
256
|
+
StartRecommendationsCommandOutput,
|
|
257
|
+
} from "../commands/StartRecommendationsCommand";
|
|
242
258
|
import {
|
|
243
259
|
StartReplicationTaskAssessmentCommandInput,
|
|
244
260
|
StartReplicationTaskAssessmentCommandOutput,
|
|
@@ -271,6 +287,10 @@ export declare const serializeAws_json1_1ApplyPendingMaintenanceActionCommand: (
|
|
|
271
287
|
input: ApplyPendingMaintenanceActionCommandInput,
|
|
272
288
|
context: __SerdeContext
|
|
273
289
|
) => Promise<__HttpRequest>;
|
|
290
|
+
export declare const serializeAws_json1_1BatchStartRecommendationsCommand: (
|
|
291
|
+
input: BatchStartRecommendationsCommandInput,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<__HttpRequest>;
|
|
274
294
|
export declare const serializeAws_json1_1CancelReplicationTaskAssessmentRunCommand: (
|
|
275
295
|
input: CancelReplicationTaskAssessmentRunCommandInput,
|
|
276
296
|
context: __SerdeContext
|
|
@@ -407,6 +427,14 @@ export declare const serializeAws_json1_1DescribePendingMaintenanceActionsComman
|
|
|
407
427
|
input: DescribePendingMaintenanceActionsCommandInput,
|
|
408
428
|
context: __SerdeContext
|
|
409
429
|
) => Promise<__HttpRequest>;
|
|
430
|
+
export declare const serializeAws_json1_1DescribeRecommendationLimitationsCommand: (
|
|
431
|
+
input: DescribeRecommendationLimitationsCommandInput,
|
|
432
|
+
context: __SerdeContext
|
|
433
|
+
) => Promise<__HttpRequest>;
|
|
434
|
+
export declare const serializeAws_json1_1DescribeRecommendationsCommand: (
|
|
435
|
+
input: DescribeRecommendationsCommandInput,
|
|
436
|
+
context: __SerdeContext
|
|
437
|
+
) => Promise<__HttpRequest>;
|
|
410
438
|
export declare const serializeAws_json1_1DescribeRefreshSchemasStatusCommand: (
|
|
411
439
|
input: DescribeRefreshSchemasStatusCommandInput,
|
|
412
440
|
context: __SerdeContext
|
|
@@ -499,6 +527,10 @@ export declare const serializeAws_json1_1RunFleetAdvisorLsaAnalysisCommand: (
|
|
|
499
527
|
input: RunFleetAdvisorLsaAnalysisCommandInput,
|
|
500
528
|
context: __SerdeContext
|
|
501
529
|
) => Promise<__HttpRequest>;
|
|
530
|
+
export declare const serializeAws_json1_1StartRecommendationsCommand: (
|
|
531
|
+
input: StartRecommendationsCommandInput,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<__HttpRequest>;
|
|
502
534
|
export declare const serializeAws_json1_1StartReplicationTaskCommand: (
|
|
503
535
|
input: StartReplicationTaskCommandInput,
|
|
504
536
|
context: __SerdeContext
|
|
@@ -531,6 +563,10 @@ export declare const deserializeAws_json1_1ApplyPendingMaintenanceActionCommand:
|
|
|
531
563
|
output: __HttpResponse,
|
|
532
564
|
context: __SerdeContext
|
|
533
565
|
) => Promise<ApplyPendingMaintenanceActionCommandOutput>;
|
|
566
|
+
export declare const deserializeAws_json1_1BatchStartRecommendationsCommand: (
|
|
567
|
+
output: __HttpResponse,
|
|
568
|
+
context: __SerdeContext
|
|
569
|
+
) => Promise<BatchStartRecommendationsCommandOutput>;
|
|
534
570
|
export declare const deserializeAws_json1_1CancelReplicationTaskAssessmentRunCommand: (
|
|
535
571
|
output: __HttpResponse,
|
|
536
572
|
context: __SerdeContext
|
|
@@ -667,6 +703,14 @@ export declare const deserializeAws_json1_1DescribePendingMaintenanceActionsComm
|
|
|
667
703
|
output: __HttpResponse,
|
|
668
704
|
context: __SerdeContext
|
|
669
705
|
) => Promise<DescribePendingMaintenanceActionsCommandOutput>;
|
|
706
|
+
export declare const deserializeAws_json1_1DescribeRecommendationLimitationsCommand: (
|
|
707
|
+
output: __HttpResponse,
|
|
708
|
+
context: __SerdeContext
|
|
709
|
+
) => Promise<DescribeRecommendationLimitationsCommandOutput>;
|
|
710
|
+
export declare const deserializeAws_json1_1DescribeRecommendationsCommand: (
|
|
711
|
+
output: __HttpResponse,
|
|
712
|
+
context: __SerdeContext
|
|
713
|
+
) => Promise<DescribeRecommendationsCommandOutput>;
|
|
670
714
|
export declare const deserializeAws_json1_1DescribeRefreshSchemasStatusCommand: (
|
|
671
715
|
output: __HttpResponse,
|
|
672
716
|
context: __SerdeContext
|
|
@@ -759,6 +803,10 @@ export declare const deserializeAws_json1_1RunFleetAdvisorLsaAnalysisCommand: (
|
|
|
759
803
|
output: __HttpResponse,
|
|
760
804
|
context: __SerdeContext
|
|
761
805
|
) => Promise<RunFleetAdvisorLsaAnalysisCommandOutput>;
|
|
806
|
+
export declare const deserializeAws_json1_1StartRecommendationsCommand: (
|
|
807
|
+
output: __HttpResponse,
|
|
808
|
+
context: __SerdeContext
|
|
809
|
+
) => Promise<StartRecommendationsCommandOutput>;
|
|
762
810
|
export declare const deserializeAws_json1_1StartReplicationTaskCommand: (
|
|
763
811
|
output: __HttpResponse,
|
|
764
812
|
context: __SerdeContext
|
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.286.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,25 +20,25 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.282.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.282.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.282.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.282.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.272.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.272.0",
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.282.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.282.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.282.0",
|
|
32
32
|
"@aws-sdk/middleware-logger": "3.272.0",
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.282.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.282.0",
|
|
35
35
|
"@aws-sdk/middleware-serde": "3.272.0",
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.282.0",
|
|
37
37
|
"@aws-sdk/middleware-stack": "3.272.0",
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.282.0",
|
|
39
39
|
"@aws-sdk/node-config-provider": "3.272.0",
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.282.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.282.0",
|
|
42
42
|
"@aws-sdk/smithy-client": "3.279.0",
|
|
43
43
|
"@aws-sdk/types": "3.272.0",
|
|
44
44
|
"@aws-sdk/url-parser": "3.272.0",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
48
|
"@aws-sdk/util-defaults-mode-browser": "3.279.0",
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.282.0",
|
|
50
50
|
"@aws-sdk/util-endpoints": "3.272.0",
|
|
51
51
|
"@aws-sdk/util-retry": "3.272.0",
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.282.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.282.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"@aws-sdk/util-waiter": "3.272.0",
|
|
56
56
|
"tslib": "^2.3.1"
|