@aws-sdk/client-database-migration-service 3.929.0 → 3.930.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 +56 -0
- package/dist-cjs/index.js +313 -80
- package/dist-es/DatabaseMigrationService.js +14 -0
- package/dist-es/commands/CancelMetadataModelConversionCommand.js +16 -0
- package/dist-es/commands/CancelMetadataModelCreationCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelChildrenCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelCommand.js +16 -0
- package/dist-es/commands/DescribeMetadataModelCreationsCommand.js +16 -0
- package/dist-es/commands/GetTargetSelectionRulesCommand.js +16 -0
- package/dist-es/commands/StartMetadataModelCreationCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/models_0.js +4 -34
- package/dist-es/models/models_1.js +0 -4
- package/dist-es/pagination/DescribeMetadataModelChildrenPaginator.js +4 -0
- package/dist-es/pagination/DescribeMetadataModelCreationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +205 -42
- package/dist-types/DatabaseMigrationService.d.ts +49 -0
- package/dist-types/DatabaseMigrationServiceClient.d.ts +9 -2
- package/dist-types/commands/CancelMetadataModelConversionCommand.d.ts +98 -0
- package/dist-types/commands/CancelMetadataModelCreationCommand.d.ts +98 -0
- package/dist-types/commands/DescribeMetadataModelChildrenCommand.d.ts +91 -0
- package/dist-types/commands/DescribeMetadataModelCommand.d.ts +91 -0
- package/dist-types/commands/DescribeMetadataModelCreationsCommand.d.ts +107 -0
- package/dist-types/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeReplicationsCommand.d.ts +2 -1
- package/dist-types/commands/GetTargetSelectionRulesCommand.d.ts +85 -0
- package/dist-types/commands/StartMetadataModelCreationCommand.d.ts +97 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/models_0.d.ts +331 -843
- package/dist-types/models/models_1.d.ts +825 -7
- package/dist-types/pagination/DescribeMetadataModelChildrenPaginator.d.ts +7 -0
- package/dist-types/pagination/DescribeMetadataModelCreationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +25 -0
- package/dist-types/ts3.4/DatabaseMigrationService.d.ts +119 -0
- package/dist-types/ts3.4/DatabaseMigrationServiceClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/CancelMetadataModelConversionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelMetadataModelCreationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelChildrenCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeMetadataModelCreationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeReplicationSubnetGroupsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationTableStatisticsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationTaskAssessmentResultsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/DescribeReplicationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/GetTargetSelectionRulesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartMetadataModelCreationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +87 -151
- package/dist-types/ts3.4/models/models_1.d.ts +156 -8
- package/dist-types/ts3.4/pagination/DescribeMetadataModelChildrenPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/DescribeMetadataModelCreationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +25 -0
- package/package.json +34 -34
|
@@ -29,12 +29,13 @@ import {
|
|
|
29
29
|
MySQLSettings,
|
|
30
30
|
NeptuneSettings,
|
|
31
31
|
OracleSettings,
|
|
32
|
+
OriginTypeValue,
|
|
32
33
|
PostgreSQLSettings,
|
|
34
|
+
PremigrationAssessmentStatus,
|
|
33
35
|
RecommendationSettings,
|
|
34
36
|
RedisSettings,
|
|
35
37
|
RedshiftSettings,
|
|
36
38
|
RefreshSchemasStatus,
|
|
37
|
-
Replication,
|
|
38
39
|
ReplicationConfig,
|
|
39
40
|
ReplicationEndpointTypeValue,
|
|
40
41
|
ReplicationInstance,
|
|
@@ -45,11 +46,128 @@ import {
|
|
|
45
46
|
SCApplicationAttributes,
|
|
46
47
|
SourceDataSetting,
|
|
47
48
|
SybaseSettings,
|
|
48
|
-
TableStatistics,
|
|
49
49
|
Tag,
|
|
50
50
|
TargetDataSetting,
|
|
51
51
|
TimestreamSettings,
|
|
52
52
|
} from "./models_0";
|
|
53
|
+
export interface ProvisionData {
|
|
54
|
+
ProvisionState?: string | undefined;
|
|
55
|
+
ProvisionedCapacityUnits?: number | undefined;
|
|
56
|
+
DateProvisioned?: Date | undefined;
|
|
57
|
+
IsNewProvisioningAvailable?: boolean | undefined;
|
|
58
|
+
DateNewProvisioningDataAvailable?: Date | undefined;
|
|
59
|
+
ReasonForNewProvisioningData?: string | undefined;
|
|
60
|
+
}
|
|
61
|
+
export interface ReplicationStats {
|
|
62
|
+
FullLoadProgressPercent?: number | undefined;
|
|
63
|
+
ElapsedTimeMillis?: number | undefined;
|
|
64
|
+
TablesLoaded?: number | undefined;
|
|
65
|
+
TablesLoading?: number | undefined;
|
|
66
|
+
TablesQueued?: number | undefined;
|
|
67
|
+
TablesErrored?: number | undefined;
|
|
68
|
+
FreshStartDate?: Date | undefined;
|
|
69
|
+
StartDate?: Date | undefined;
|
|
70
|
+
StopDate?: Date | undefined;
|
|
71
|
+
FullLoadStartDate?: Date | undefined;
|
|
72
|
+
FullLoadFinishDate?: Date | undefined;
|
|
73
|
+
}
|
|
74
|
+
export interface Replication {
|
|
75
|
+
ReplicationConfigIdentifier?: string | undefined;
|
|
76
|
+
ReplicationConfigArn?: string | undefined;
|
|
77
|
+
SourceEndpointArn?: string | undefined;
|
|
78
|
+
TargetEndpointArn?: string | undefined;
|
|
79
|
+
ReplicationType?: MigrationTypeValue | undefined;
|
|
80
|
+
Status?: string | undefined;
|
|
81
|
+
ProvisionData?: ProvisionData | undefined;
|
|
82
|
+
PremigrationAssessmentStatuses?: PremigrationAssessmentStatus[] | undefined;
|
|
83
|
+
StopReason?: string | undefined;
|
|
84
|
+
FailureMessages?: string[] | undefined;
|
|
85
|
+
ReplicationStats?: ReplicationStats | undefined;
|
|
86
|
+
StartReplicationType?: string | undefined;
|
|
87
|
+
CdcStartTime?: Date | undefined;
|
|
88
|
+
CdcStartPosition?: string | undefined;
|
|
89
|
+
CdcStopPosition?: string | undefined;
|
|
90
|
+
RecoveryCheckpoint?: string | undefined;
|
|
91
|
+
ReplicationCreateTime?: Date | undefined;
|
|
92
|
+
ReplicationUpdateTime?: Date | undefined;
|
|
93
|
+
ReplicationLastStopTime?: Date | undefined;
|
|
94
|
+
ReplicationDeprovisionTime?: Date | undefined;
|
|
95
|
+
}
|
|
96
|
+
export interface DescribeReplicationsResponse {
|
|
97
|
+
Marker?: string | undefined;
|
|
98
|
+
Replications?: Replication[] | undefined;
|
|
99
|
+
}
|
|
100
|
+
export interface DescribeReplicationSubnetGroupsMessage {
|
|
101
|
+
Filters?: Filter[] | undefined;
|
|
102
|
+
MaxRecords?: number | undefined;
|
|
103
|
+
Marker?: string | undefined;
|
|
104
|
+
}
|
|
105
|
+
export interface DescribeReplicationSubnetGroupsResponse {
|
|
106
|
+
Marker?: string | undefined;
|
|
107
|
+
ReplicationSubnetGroups?: ReplicationSubnetGroup[] | undefined;
|
|
108
|
+
}
|
|
109
|
+
export interface DescribeReplicationTableStatisticsMessage {
|
|
110
|
+
ReplicationConfigArn: string | undefined;
|
|
111
|
+
MaxRecords?: number | undefined;
|
|
112
|
+
Marker?: string | undefined;
|
|
113
|
+
Filters?: Filter[] | undefined;
|
|
114
|
+
}
|
|
115
|
+
export interface TableStatistics {
|
|
116
|
+
SchemaName?: string | undefined;
|
|
117
|
+
TableName?: string | undefined;
|
|
118
|
+
Inserts?: number | undefined;
|
|
119
|
+
Deletes?: number | undefined;
|
|
120
|
+
Updates?: number | undefined;
|
|
121
|
+
Ddls?: number | undefined;
|
|
122
|
+
AppliedInserts?: number | undefined;
|
|
123
|
+
AppliedDeletes?: number | undefined;
|
|
124
|
+
AppliedUpdates?: number | undefined;
|
|
125
|
+
AppliedDdls?: number | undefined;
|
|
126
|
+
FullLoadRows?: number | undefined;
|
|
127
|
+
FullLoadCondtnlChkFailedRows?: number | undefined;
|
|
128
|
+
FullLoadErrorRows?: number | undefined;
|
|
129
|
+
FullLoadStartTime?: Date | undefined;
|
|
130
|
+
FullLoadEndTime?: Date | undefined;
|
|
131
|
+
FullLoadReloaded?: boolean | undefined;
|
|
132
|
+
LastUpdateTime?: Date | undefined;
|
|
133
|
+
TableState?: string | undefined;
|
|
134
|
+
ValidationPendingRecords?: number | undefined;
|
|
135
|
+
ValidationFailedRecords?: number | undefined;
|
|
136
|
+
ValidationSuspendedRecords?: number | undefined;
|
|
137
|
+
ValidationState?: string | undefined;
|
|
138
|
+
ValidationStateDetails?: string | undefined;
|
|
139
|
+
ResyncState?: string | undefined;
|
|
140
|
+
ResyncRowsAttempted?: number | undefined;
|
|
141
|
+
ResyncRowsSucceeded?: number | undefined;
|
|
142
|
+
ResyncRowsFailed?: number | undefined;
|
|
143
|
+
ResyncProgress?: number | undefined;
|
|
144
|
+
}
|
|
145
|
+
export interface DescribeReplicationTableStatisticsResponse {
|
|
146
|
+
ReplicationConfigArn?: string | undefined;
|
|
147
|
+
Marker?: string | undefined;
|
|
148
|
+
ReplicationTableStatistics?: TableStatistics[] | undefined;
|
|
149
|
+
}
|
|
150
|
+
export interface DescribeReplicationTaskAssessmentResultsMessage {
|
|
151
|
+
ReplicationTaskArn?: string | undefined;
|
|
152
|
+
MaxRecords?: number | undefined;
|
|
153
|
+
Marker?: string | undefined;
|
|
154
|
+
}
|
|
155
|
+
export interface ReplicationTaskAssessmentResult {
|
|
156
|
+
ReplicationTaskIdentifier?: string | undefined;
|
|
157
|
+
ReplicationTaskArn?: string | undefined;
|
|
158
|
+
ReplicationTaskLastAssessmentDate?: Date | undefined;
|
|
159
|
+
AssessmentStatus?: string | undefined;
|
|
160
|
+
AssessmentResultsFile?: string | undefined;
|
|
161
|
+
AssessmentResults?: string | undefined;
|
|
162
|
+
S3ObjectUrl?: string | undefined;
|
|
163
|
+
}
|
|
164
|
+
export interface DescribeReplicationTaskAssessmentResultsResponse {
|
|
165
|
+
Marker?: string | undefined;
|
|
166
|
+
BucketName?: string | undefined;
|
|
167
|
+
ReplicationTaskAssessmentResults?:
|
|
168
|
+
| ReplicationTaskAssessmentResult[]
|
|
169
|
+
| undefined;
|
|
170
|
+
}
|
|
53
171
|
export interface DescribeReplicationTaskAssessmentRunsMessage {
|
|
54
172
|
Filters?: Filter[] | undefined;
|
|
55
173
|
MaxRecords?: number | undefined;
|
|
@@ -127,6 +245,13 @@ export interface ExportMetadataModelAssessmentResponse {
|
|
|
127
245
|
PdfReport?: ExportMetadataModelAssessmentResultEntry | undefined;
|
|
128
246
|
CsvReport?: ExportMetadataModelAssessmentResultEntry | undefined;
|
|
129
247
|
}
|
|
248
|
+
export interface GetTargetSelectionRulesMessage {
|
|
249
|
+
MigrationProjectIdentifier: string | undefined;
|
|
250
|
+
SelectionRules: string | undefined;
|
|
251
|
+
}
|
|
252
|
+
export interface GetTargetSelectionRulesResponse {
|
|
253
|
+
TargetSelectionRules?: string | undefined;
|
|
254
|
+
}
|
|
130
255
|
export interface ImportCertificateMessage {
|
|
131
256
|
CertificateIdentifier: string | undefined;
|
|
132
257
|
CertificatePem?: string | undefined;
|
|
@@ -420,12 +545,35 @@ export interface StartMetadataModelConversionMessage {
|
|
|
420
545
|
export interface StartMetadataModelConversionResponse {
|
|
421
546
|
RequestIdentifier?: string | undefined;
|
|
422
547
|
}
|
|
423
|
-
export
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
548
|
+
export interface StatementProperties {
|
|
549
|
+
Definition: string | undefined;
|
|
550
|
+
}
|
|
551
|
+
export type MetadataModelProperties =
|
|
552
|
+
| MetadataModelProperties.StatementPropertiesMember
|
|
553
|
+
| MetadataModelProperties.$UnknownMember;
|
|
554
|
+
export declare namespace MetadataModelProperties {
|
|
555
|
+
interface StatementPropertiesMember {
|
|
556
|
+
StatementProperties: StatementProperties;
|
|
557
|
+
$unknown?: never;
|
|
558
|
+
}
|
|
559
|
+
interface $UnknownMember {
|
|
560
|
+
StatementProperties?: never;
|
|
561
|
+
$unknown: [string, any];
|
|
562
|
+
}
|
|
563
|
+
interface Visitor<T> {
|
|
564
|
+
StatementProperties: (value: StatementProperties) => T;
|
|
565
|
+
_: (name: string, value: any) => T;
|
|
566
|
+
}
|
|
567
|
+
}
|
|
568
|
+
export interface StartMetadataModelCreationMessage {
|
|
569
|
+
MigrationProjectIdentifier: string | undefined;
|
|
570
|
+
SelectionRules: string | undefined;
|
|
571
|
+
MetadataModelName: string | undefined;
|
|
572
|
+
Properties: MetadataModelProperties | undefined;
|
|
573
|
+
}
|
|
574
|
+
export interface StartMetadataModelCreationResponse {
|
|
575
|
+
RequestIdentifier?: string | undefined;
|
|
576
|
+
}
|
|
429
577
|
export interface StartMetadataModelExportAsScriptMessage {
|
|
430
578
|
MigrationProjectIdentifier: string | undefined;
|
|
431
579
|
SelectionRules: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeMetadataModelChildrenCommandInput,
|
|
4
|
+
DescribeMetadataModelChildrenCommandOutput,
|
|
5
|
+
} from "../commands/DescribeMetadataModelChildrenCommand";
|
|
6
|
+
import { DatabaseMigrationServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeMetadataModelChildren: (
|
|
8
|
+
config: DatabaseMigrationServicePaginationConfiguration,
|
|
9
|
+
input: DescribeMetadataModelChildrenCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeMetadataModelChildrenCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeMetadataModelCreationsCommandInput,
|
|
4
|
+
DescribeMetadataModelCreationsCommandOutput,
|
|
5
|
+
} from "../commands/DescribeMetadataModelCreationsCommand";
|
|
6
|
+
import { DatabaseMigrationServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateDescribeMetadataModelCreations: (
|
|
8
|
+
config: DatabaseMigrationServicePaginationConfiguration,
|
|
9
|
+
input: DescribeMetadataModelCreationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeMetadataModelCreationsCommandOutput>;
|
|
@@ -18,7 +18,9 @@ export * from "./DescribeFleetAdvisorSchemaObjectSummaryPaginator";
|
|
|
18
18
|
export * from "./DescribeFleetAdvisorSchemasPaginator";
|
|
19
19
|
export * from "./DescribeInstanceProfilesPaginator";
|
|
20
20
|
export * from "./DescribeMetadataModelAssessmentsPaginator";
|
|
21
|
+
export * from "./DescribeMetadataModelChildrenPaginator";
|
|
21
22
|
export * from "./DescribeMetadataModelConversionsPaginator";
|
|
23
|
+
export * from "./DescribeMetadataModelCreationsPaginator";
|
|
22
24
|
export * from "./DescribeMetadataModelExportsAsScriptPaginator";
|
|
23
25
|
export * from "./DescribeMetadataModelExportsToTargetPaginator";
|
|
24
26
|
export * from "./DescribeMetadataModelImportsPaginator";
|
|
@@ -16,6 +16,10 @@ export declare var AvailabilityZone: StaticStructureSchema;
|
|
|
16
16
|
export declare var BatchStartRecommendationsErrorEntry: StaticStructureSchema;
|
|
17
17
|
export declare var BatchStartRecommendationsRequest: StaticStructureSchema;
|
|
18
18
|
export declare var BatchStartRecommendationsResponse: StaticStructureSchema;
|
|
19
|
+
export declare var CancelMetadataModelConversionMessage: StaticStructureSchema;
|
|
20
|
+
export declare var CancelMetadataModelConversionResponse: StaticStructureSchema;
|
|
21
|
+
export declare var CancelMetadataModelCreationMessage: StaticStructureSchema;
|
|
22
|
+
export declare var CancelMetadataModelCreationResponse: StaticStructureSchema;
|
|
19
23
|
export declare var CancelReplicationTaskAssessmentRunMessage: StaticStructureSchema;
|
|
20
24
|
export declare var CancelReplicationTaskAssessmentRunResponse: StaticStructureSchema;
|
|
21
25
|
export declare var Certificate: StaticStructureSchema;
|
|
@@ -130,14 +134,20 @@ export declare var DescribeInstanceProfilesMessage: StaticStructureSchema;
|
|
|
130
134
|
export declare var DescribeInstanceProfilesResponse: StaticStructureSchema;
|
|
131
135
|
export declare var DescribeMetadataModelAssessmentsMessage: StaticStructureSchema;
|
|
132
136
|
export declare var DescribeMetadataModelAssessmentsResponse: StaticStructureSchema;
|
|
137
|
+
export declare var DescribeMetadataModelChildrenMessage: StaticStructureSchema;
|
|
138
|
+
export declare var DescribeMetadataModelChildrenResponse: StaticStructureSchema;
|
|
133
139
|
export declare var DescribeMetadataModelConversionsMessage: StaticStructureSchema;
|
|
134
140
|
export declare var DescribeMetadataModelConversionsResponse: StaticStructureSchema;
|
|
141
|
+
export declare var DescribeMetadataModelCreationsMessage: StaticStructureSchema;
|
|
142
|
+
export declare var DescribeMetadataModelCreationsResponse: StaticStructureSchema;
|
|
135
143
|
export declare var DescribeMetadataModelExportsAsScriptMessage: StaticStructureSchema;
|
|
136
144
|
export declare var DescribeMetadataModelExportsAsScriptResponse: StaticStructureSchema;
|
|
137
145
|
export declare var DescribeMetadataModelExportsToTargetMessage: StaticStructureSchema;
|
|
138
146
|
export declare var DescribeMetadataModelExportsToTargetResponse: StaticStructureSchema;
|
|
139
147
|
export declare var DescribeMetadataModelImportsMessage: StaticStructureSchema;
|
|
140
148
|
export declare var DescribeMetadataModelImportsResponse: StaticStructureSchema;
|
|
149
|
+
export declare var DescribeMetadataModelMessage: StaticStructureSchema;
|
|
150
|
+
export declare var DescribeMetadataModelResponse: StaticStructureSchema;
|
|
141
151
|
export declare var DescribeMigrationProjectsMessage: StaticStructureSchema;
|
|
142
152
|
export declare var DescribeMigrationProjectsResponse: StaticStructureSchema;
|
|
143
153
|
export declare var DescribeOrderableReplicationInstancesMessage: StaticStructureSchema;
|
|
@@ -194,6 +204,8 @@ export declare var Filter: StaticStructureSchema;
|
|
|
194
204
|
export declare var FleetAdvisorLsaAnalysisResponse: StaticStructureSchema;
|
|
195
205
|
export declare var FleetAdvisorSchemaObjectResponse: StaticStructureSchema;
|
|
196
206
|
export declare var GcpMySQLSettings: StaticStructureSchema;
|
|
207
|
+
export declare var GetTargetSelectionRulesMessage: StaticStructureSchema;
|
|
208
|
+
export declare var GetTargetSelectionRulesResponse: StaticStructureSchema;
|
|
197
209
|
export declare var IbmDb2LuwDataProviderSettings: StaticStructureSchema;
|
|
198
210
|
export declare var IBMDb2Settings: StaticStructureSchema;
|
|
199
211
|
export declare var IbmDb2zOsDataProviderSettings: StaticStructureSchema;
|
|
@@ -220,6 +232,7 @@ export declare var Limitation: StaticStructureSchema;
|
|
|
220
232
|
export declare var ListTagsForResourceMessage: StaticStructureSchema;
|
|
221
233
|
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
222
234
|
export declare var MariaDbDataProviderSettings: StaticStructureSchema;
|
|
235
|
+
export declare var MetadataModelReference: StaticStructureSchema;
|
|
223
236
|
export declare var MicrosoftSqlServerDataProviderSettings: StaticStructureSchema;
|
|
224
237
|
export declare var MicrosoftSQLServerSettings: StaticStructureSchema;
|
|
225
238
|
export declare var MigrationProject: StaticStructureSchema;
|
|
@@ -319,6 +332,8 @@ export declare var StartMetadataModelAssessmentMessage: StaticStructureSchema;
|
|
|
319
332
|
export declare var StartMetadataModelAssessmentResponse: StaticStructureSchema;
|
|
320
333
|
export declare var StartMetadataModelConversionMessage: StaticStructureSchema;
|
|
321
334
|
export declare var StartMetadataModelConversionResponse: StaticStructureSchema;
|
|
335
|
+
export declare var StartMetadataModelCreationMessage: StaticStructureSchema;
|
|
336
|
+
export declare var StartMetadataModelCreationResponse: StaticStructureSchema;
|
|
322
337
|
export declare var StartMetadataModelExportAsScriptMessage: StaticStructureSchema;
|
|
323
338
|
export declare var StartMetadataModelExportAsScriptResponse: StaticStructureSchema;
|
|
324
339
|
export declare var StartMetadataModelExportToTargetMessage: StaticStructureSchema;
|
|
@@ -335,6 +350,7 @@ export declare var StartReplicationTaskAssessmentRunMessage: StaticStructureSche
|
|
|
335
350
|
export declare var StartReplicationTaskAssessmentRunResponse: StaticStructureSchema;
|
|
336
351
|
export declare var StartReplicationTaskMessage: StaticStructureSchema;
|
|
337
352
|
export declare var StartReplicationTaskResponse: StaticStructureSchema;
|
|
353
|
+
export declare var StatementProperties: StaticStructureSchema;
|
|
338
354
|
export declare var StopDataMigrationMessage: StaticStructureSchema;
|
|
339
355
|
export declare var StopDataMigrationResponse: StaticStructureSchema;
|
|
340
356
|
export declare var StopReplicationMessage: StaticStructureSchema;
|
|
@@ -395,6 +411,7 @@ export declare var InstanceProfileList: StaticListSchema;
|
|
|
395
411
|
export declare var IntegerList: number;
|
|
396
412
|
export declare var KeyList: number;
|
|
397
413
|
export declare var LimitationList: StaticListSchema;
|
|
414
|
+
export declare var MetadataModelReferenceList: StaticListSchema;
|
|
398
415
|
export declare var MigrationProjectList: StaticListSchema;
|
|
399
416
|
export declare var OrderableReplicationInstanceList: StaticListSchema;
|
|
400
417
|
export declare var PendingMaintenanceActionDetails: StaticListSchema;
|
|
@@ -432,9 +449,12 @@ export declare var VpcSecurityGroupIdList: StaticListSchema;
|
|
|
432
449
|
export declare var VpcSecurityGroupMembershipList: StaticListSchema;
|
|
433
450
|
export declare var DataProviderSettings: StaticStructureSchema;
|
|
434
451
|
export declare var ErrorDetails: StaticStructureSchema;
|
|
452
|
+
export declare var MetadataModelProperties: StaticStructureSchema;
|
|
435
453
|
export declare var AddTagsToResource: StaticOperationSchema;
|
|
436
454
|
export declare var ApplyPendingMaintenanceAction: StaticOperationSchema;
|
|
437
455
|
export declare var BatchStartRecommendations: StaticOperationSchema;
|
|
456
|
+
export declare var CancelMetadataModelConversion: StaticOperationSchema;
|
|
457
|
+
export declare var CancelMetadataModelCreation: StaticOperationSchema;
|
|
438
458
|
export declare var CancelReplicationTaskAssessmentRun: StaticOperationSchema;
|
|
439
459
|
export declare var CreateDataMigration: StaticOperationSchema;
|
|
440
460
|
export declare var CreateDataProvider: StaticOperationSchema;
|
|
@@ -483,8 +503,11 @@ export declare var DescribeFleetAdvisorLsaAnalysis: StaticOperationSchema;
|
|
|
483
503
|
export declare var DescribeFleetAdvisorSchemaObjectSummary: StaticOperationSchema;
|
|
484
504
|
export declare var DescribeFleetAdvisorSchemas: StaticOperationSchema;
|
|
485
505
|
export declare var DescribeInstanceProfiles: StaticOperationSchema;
|
|
506
|
+
export declare var DescribeMetadataModel: StaticOperationSchema;
|
|
486
507
|
export declare var DescribeMetadataModelAssessments: StaticOperationSchema;
|
|
508
|
+
export declare var DescribeMetadataModelChildren: StaticOperationSchema;
|
|
487
509
|
export declare var DescribeMetadataModelConversions: StaticOperationSchema;
|
|
510
|
+
export declare var DescribeMetadataModelCreations: StaticOperationSchema;
|
|
488
511
|
export declare var DescribeMetadataModelExportsAsScript: StaticOperationSchema;
|
|
489
512
|
export declare var DescribeMetadataModelExportsToTarget: StaticOperationSchema;
|
|
490
513
|
export declare var DescribeMetadataModelImports: StaticOperationSchema;
|
|
@@ -507,6 +530,7 @@ export declare var DescribeReplicationTasks: StaticOperationSchema;
|
|
|
507
530
|
export declare var DescribeSchemas: StaticOperationSchema;
|
|
508
531
|
export declare var DescribeTableStatistics: StaticOperationSchema;
|
|
509
532
|
export declare var ExportMetadataModelAssessment: StaticOperationSchema;
|
|
533
|
+
export declare var GetTargetSelectionRules: StaticOperationSchema;
|
|
510
534
|
export declare var ImportCertificate: StaticOperationSchema;
|
|
511
535
|
export declare var ListTagsForResource: StaticOperationSchema;
|
|
512
536
|
export declare var ModifyConversionConfiguration: StaticOperationSchema;
|
|
@@ -531,6 +555,7 @@ export declare var StartDataMigration: StaticOperationSchema;
|
|
|
531
555
|
export declare var StartExtensionPackAssociation: StaticOperationSchema;
|
|
532
556
|
export declare var StartMetadataModelAssessment: StaticOperationSchema;
|
|
533
557
|
export declare var StartMetadataModelConversion: StaticOperationSchema;
|
|
558
|
+
export declare var StartMetadataModelCreation: StaticOperationSchema;
|
|
534
559
|
export declare var StartMetadataModelExportAsScript: StaticOperationSchema;
|
|
535
560
|
export declare var StartMetadataModelExportToTarget: StaticOperationSchema;
|
|
536
561
|
export declare var StartMetadataModelImport: StaticOperationSchema;
|
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.930.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,43 +20,43 @@
|
|
|
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.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.4.
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.3.
|
|
37
|
-
"@smithy/hash-node": "^4.2.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.2.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.2.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
-
"@smithy/middleware-stack": "^4.2.
|
|
44
|
-
"@smithy/node-config-provider": "^4.3.
|
|
45
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
-
"@smithy/protocol-http": "^5.3.
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.2.
|
|
23
|
+
"@aws-sdk/core": "3.930.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.930.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.930.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.930.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
|
+
"@aws-sdk/types": "3.930.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.930.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
+
"@smithy/core": "^3.18.2",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
|
+
"@smithy/hash-node": "^4.2.5",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.9",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.9",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.5",
|
|
43
|
+
"@smithy/middleware-stack": "^4.2.5",
|
|
44
|
+
"@smithy/node-config-provider": "^4.3.5",
|
|
45
|
+
"@smithy/node-http-handler": "^4.4.5",
|
|
46
|
+
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
+
"@smithy/smithy-client": "^4.9.5",
|
|
48
|
+
"@smithy/types": "^4.9.0",
|
|
49
|
+
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
55
|
-
"@smithy/util-endpoints": "^3.2.
|
|
56
|
-
"@smithy/util-middleware": "^4.2.
|
|
57
|
-
"@smithy/util-retry": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.11",
|
|
55
|
+
"@smithy/util-endpoints": "^3.2.5",
|
|
56
|
+
"@smithy/util-middleware": "^4.2.5",
|
|
57
|
+
"@smithy/util-retry": "^4.2.5",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/util-waiter": "^4.2.
|
|
59
|
+
"@smithy/util-waiter": "^4.2.5",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|