@azure/arm-datamigration 3.0.0-beta.2 → 3.0.0-beta.3
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +2 -2
- package/README.md +1 -1
- package/dist/index.js +630 -110
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/databaseMigrationsSqlMiCreateOrUpdateSample.js +2 -2
- package/dist-esm/samples-dev/databaseMigrationsSqlMiCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/databaseMigrationsSqlVMCreateOrUpdateSample.js +2 -2
- package/dist-esm/samples-dev/databaseMigrationsSqlVMCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/src/dataMigrationManagementClient.d.ts +2 -0
- package/dist-esm/src/dataMigrationManagementClient.d.ts.map +1 -1
- package/dist-esm/src/dataMigrationManagementClient.js +49 -18
- package/dist-esm/src/dataMigrationManagementClient.js.map +1 -1
- package/dist-esm/src/index.d.ts +1 -0
- package/dist-esm/src/index.d.ts.map +1 -1
- package/dist-esm/src/index.js +1 -0
- package/dist-esm/src/index.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +556 -240
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +314 -0
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/operations/files.d.ts.map +1 -1
- package/dist-esm/src/operations/files.js +19 -7
- package/dist-esm/src/operations/files.js.map +1 -1
- package/dist-esm/src/operations/operations.d.ts.map +1 -1
- package/dist-esm/src/operations/operations.js +19 -7
- package/dist-esm/src/operations/operations.js.map +1 -1
- package/dist-esm/src/operations/projects.d.ts.map +1 -1
- package/dist-esm/src/operations/projects.js +19 -7
- package/dist-esm/src/operations/projects.js.map +1 -1
- package/dist-esm/src/operations/resourceSkus.d.ts.map +1 -1
- package/dist-esm/src/operations/resourceSkus.js +19 -7
- package/dist-esm/src/operations/resourceSkus.js.map +1 -1
- package/dist-esm/src/operations/serviceTasks.d.ts.map +1 -1
- package/dist-esm/src/operations/serviceTasks.js +19 -7
- package/dist-esm/src/operations/serviceTasks.js.map +1 -1
- package/dist-esm/src/operations/services.d.ts.map +1 -1
- package/dist-esm/src/operations/services.js +55 -21
- package/dist-esm/src/operations/services.js.map +1 -1
- package/dist-esm/src/operations/sqlMigrationServices.d.ts.map +1 -1
- package/dist-esm/src/operations/sqlMigrationServices.js +55 -21
- package/dist-esm/src/operations/sqlMigrationServices.js.map +1 -1
- package/dist-esm/src/operations/tasks.d.ts.map +1 -1
- package/dist-esm/src/operations/tasks.js +19 -7
- package/dist-esm/src/operations/tasks.js.map +1 -1
- package/dist-esm/src/operations/usages.d.ts.map +1 -1
- package/dist-esm/src/operations/usages.js +19 -7
- package/dist-esm/src/operations/usages.js.map +1 -1
- package/dist-esm/src/pagingHelper.d.ts +13 -0
- package/dist-esm/src/pagingHelper.d.ts.map +1 -0
- package/dist-esm/src/pagingHelper.js +32 -0
- package/dist-esm/src/pagingHelper.js.map +1 -0
- package/dist-esm/test/sampleTest.js +11 -13
- package/dist-esm/test/sampleTest.js.map +1 -1
- package/package.json +14 -10
- package/review/arm-datamigration.api.md +564 -872
- package/src/dataMigrationManagementClient.ts +60 -20
- package/src/index.ts +1 -0
- package/src/models/index.ts +646 -246
- package/src/operations/files.ts +22 -8
- package/src/operations/operations.ts +21 -8
- package/src/operations/projects.ts +21 -8
- package/src/operations/resourceSkus.ts +21 -8
- package/src/operations/serviceTasks.ts +21 -8
- package/src/operations/services.ts +67 -25
- package/src/operations/sqlMigrationServices.ts +71 -29
- package/src/operations/tasks.ts +22 -8
- package/src/operations/usages.ts +21 -8
- package/src/pagingHelper.ts +39 -0
- package/types/arm-datamigration.d.ts +567 -240
- package/types/tsdoc-metadata.json +1 -1
@@ -115,11 +115,11 @@ export interface CheckOCIDriverTaskOutput {
|
|
115
115
|
}
|
116
116
|
|
117
117
|
// @public
|
118
|
-
export
|
119
|
-
taskType: "Service.Check.OCI";
|
118
|
+
export interface CheckOCIDriverTaskProperties extends ProjectTaskProperties {
|
120
119
|
input?: CheckOCIDriverTaskInput;
|
121
120
|
readonly output?: CheckOCIDriverTaskOutput[];
|
122
|
-
|
121
|
+
taskType: "Service.Check.OCI";
|
122
|
+
}
|
123
123
|
|
124
124
|
// @public
|
125
125
|
export interface CommandProperties {
|
@@ -148,11 +148,11 @@ export interface ConnectionInfo {
|
|
148
148
|
export type ConnectionInfoUnion = ConnectionInfo | MongoDbConnectionInfo | SqlConnectionInfo | MySqlConnectionInfo | OracleConnectionInfo | PostgreSqlConnectionInfo | MiSqlConnectionInfo;
|
149
149
|
|
150
150
|
// @public
|
151
|
-
export
|
152
|
-
taskType: "Connect.MongoDb";
|
151
|
+
export interface ConnectToMongoDbTaskProperties extends ProjectTaskProperties {
|
153
152
|
input?: MongoDbConnectionInfo;
|
154
153
|
readonly output?: MongoDbClusterInfo[];
|
155
|
-
|
154
|
+
taskType: "Connect.MongoDb";
|
155
|
+
}
|
156
156
|
|
157
157
|
// @public
|
158
158
|
export interface ConnectToSourceMySqlTaskInput {
|
@@ -163,11 +163,11 @@ export interface ConnectToSourceMySqlTaskInput {
|
|
163
163
|
}
|
164
164
|
|
165
165
|
// @public
|
166
|
-
export
|
167
|
-
taskType: "ConnectToSource.MySql";
|
166
|
+
export interface ConnectToSourceMySqlTaskProperties extends ProjectTaskProperties {
|
168
167
|
input?: ConnectToSourceMySqlTaskInput;
|
169
168
|
readonly output?: ConnectToSourceNonSqlTaskOutput[];
|
170
|
-
|
169
|
+
taskType: "ConnectToSource.MySql";
|
170
|
+
}
|
171
171
|
|
172
172
|
// @public
|
173
173
|
export interface ConnectToSourceNonSqlTaskOutput {
|
@@ -192,11 +192,11 @@ export interface ConnectToSourceOracleSyncTaskOutput {
|
|
192
192
|
}
|
193
193
|
|
194
194
|
// @public
|
195
|
-
export
|
196
|
-
taskType: "ConnectToSource.Oracle.Sync";
|
195
|
+
export interface ConnectToSourceOracleSyncTaskProperties extends ProjectTaskProperties {
|
197
196
|
input?: ConnectToSourceOracleSyncTaskInput;
|
198
197
|
readonly output?: ConnectToSourceOracleSyncTaskOutput[];
|
199
|
-
|
198
|
+
taskType: "ConnectToSource.Oracle.Sync";
|
199
|
+
}
|
200
200
|
|
201
201
|
// @public
|
202
202
|
export interface ConnectToSourcePostgreSqlSyncTaskInput {
|
@@ -213,18 +213,18 @@ export interface ConnectToSourcePostgreSqlSyncTaskOutput {
|
|
213
213
|
}
|
214
214
|
|
215
215
|
// @public
|
216
|
-
export
|
217
|
-
taskType: "ConnectToSource.PostgreSql.Sync";
|
216
|
+
export interface ConnectToSourcePostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
218
217
|
input?: ConnectToSourcePostgreSqlSyncTaskInput;
|
219
218
|
readonly output?: ConnectToSourcePostgreSqlSyncTaskOutput[];
|
220
|
-
|
219
|
+
taskType: "ConnectToSource.PostgreSql.Sync";
|
220
|
+
}
|
221
221
|
|
222
222
|
// @public
|
223
|
-
export
|
224
|
-
taskType: "ConnectToSource.SqlServer.Sync";
|
223
|
+
export interface ConnectToSourceSqlServerSyncTaskProperties extends ProjectTaskProperties {
|
225
224
|
input?: ConnectToSourceSqlServerTaskInput;
|
226
225
|
readonly output?: ConnectToSourceSqlServerTaskOutputUnion[];
|
227
|
-
|
226
|
+
taskType: "ConnectToSource.SqlServer.Sync";
|
227
|
+
}
|
228
228
|
|
229
229
|
// @public
|
230
230
|
export interface ConnectToSourceSqlServerTaskInput {
|
@@ -244,58 +244,58 @@ export interface ConnectToSourceSqlServerTaskOutput {
|
|
244
244
|
}
|
245
245
|
|
246
246
|
// @public
|
247
|
-
export
|
248
|
-
resultType: "AgentJobLevelOutput";
|
249
|
-
readonly name?: string;
|
250
|
-
readonly jobCategory?: string;
|
247
|
+
export interface ConnectToSourceSqlServerTaskOutputAgentJobLevel extends ConnectToSourceSqlServerTaskOutput {
|
251
248
|
readonly isEnabled?: boolean;
|
249
|
+
readonly jobCategory?: string;
|
252
250
|
readonly jobOwner?: string;
|
253
251
|
readonly lastExecutedOn?: Date;
|
254
|
-
readonly validationErrors?: ReportableException[];
|
255
252
|
readonly migrationEligibility?: MigrationEligibilityInfo;
|
256
|
-
|
253
|
+
readonly name?: string;
|
254
|
+
resultType: "AgentJobLevelOutput";
|
255
|
+
readonly validationErrors?: ReportableException[];
|
256
|
+
}
|
257
257
|
|
258
258
|
// @public
|
259
|
-
export
|
260
|
-
resultType: "DatabaseLevelOutput";
|
261
|
-
readonly name?: string;
|
262
|
-
readonly sizeMB?: number;
|
263
|
-
readonly databaseFiles?: DatabaseFileInfo[];
|
259
|
+
export interface ConnectToSourceSqlServerTaskOutputDatabaseLevel extends ConnectToSourceSqlServerTaskOutput {
|
264
260
|
readonly compatibilityLevel?: DatabaseCompatLevel;
|
261
|
+
readonly databaseFiles?: DatabaseFileInfo[];
|
265
262
|
readonly databaseState?: DatabaseState;
|
266
|
-
|
263
|
+
readonly name?: string;
|
264
|
+
resultType: "DatabaseLevelOutput";
|
265
|
+
readonly sizeMB?: number;
|
266
|
+
}
|
267
267
|
|
268
268
|
// @public
|
269
|
-
export
|
270
|
-
resultType: "LoginLevelOutput";
|
271
|
-
readonly name?: string;
|
272
|
-
readonly loginType?: LoginType;
|
269
|
+
export interface ConnectToSourceSqlServerTaskOutputLoginLevel extends ConnectToSourceSqlServerTaskOutput {
|
273
270
|
readonly defaultDatabase?: string;
|
274
271
|
readonly isEnabled?: boolean;
|
272
|
+
readonly loginType?: LoginType;
|
275
273
|
readonly migrationEligibility?: MigrationEligibilityInfo;
|
276
|
-
|
274
|
+
readonly name?: string;
|
275
|
+
resultType: "LoginLevelOutput";
|
276
|
+
}
|
277
277
|
|
278
278
|
// @public
|
279
|
-
export
|
280
|
-
resultType: "TaskLevelOutput";
|
281
|
-
readonly databases?: string;
|
282
|
-
readonly logins?: string;
|
279
|
+
export interface ConnectToSourceSqlServerTaskOutputTaskLevel extends ConnectToSourceSqlServerTaskOutput {
|
283
280
|
readonly agentJobs?: string;
|
281
|
+
readonly databases?: string;
|
284
282
|
readonly databaseTdeCertificateMapping?: string;
|
285
|
-
readonly
|
283
|
+
readonly logins?: string;
|
284
|
+
resultType: "TaskLevelOutput";
|
286
285
|
readonly sourceServerBrandVersion?: string;
|
286
|
+
readonly sourceServerVersion?: string;
|
287
287
|
readonly validationErrors?: ReportableException[];
|
288
|
-
}
|
288
|
+
}
|
289
289
|
|
290
290
|
// @public (undocumented)
|
291
291
|
export type ConnectToSourceSqlServerTaskOutputUnion = ConnectToSourceSqlServerTaskOutput | ConnectToSourceSqlServerTaskOutputTaskLevel | ConnectToSourceSqlServerTaskOutputDatabaseLevel | ConnectToSourceSqlServerTaskOutputLoginLevel | ConnectToSourceSqlServerTaskOutputAgentJobLevel;
|
292
292
|
|
293
293
|
// @public
|
294
|
-
export
|
295
|
-
taskType: "ConnectToSource.SqlServer";
|
294
|
+
export interface ConnectToSourceSqlServerTaskProperties extends ProjectTaskProperties {
|
296
295
|
input?: ConnectToSourceSqlServerTaskInput;
|
297
296
|
readonly output?: ConnectToSourceSqlServerTaskOutputUnion[];
|
298
|
-
|
297
|
+
taskType: "ConnectToSource.SqlServer";
|
298
|
+
}
|
299
299
|
|
300
300
|
// @public
|
301
301
|
export interface ConnectToTargetAzureDbForMySqlTaskInput {
|
@@ -314,11 +314,11 @@ export interface ConnectToTargetAzureDbForMySqlTaskOutput {
|
|
314
314
|
}
|
315
315
|
|
316
316
|
// @public
|
317
|
-
export
|
318
|
-
taskType: "ConnectToTarget.AzureDbForMySql";
|
317
|
+
export interface ConnectToTargetAzureDbForMySqlTaskProperties extends ProjectTaskProperties {
|
319
318
|
input?: ConnectToTargetAzureDbForMySqlTaskInput;
|
320
319
|
readonly output?: ConnectToTargetAzureDbForMySqlTaskOutput[];
|
321
|
-
|
320
|
+
taskType: "ConnectToTarget.AzureDbForMySql";
|
321
|
+
}
|
322
322
|
|
323
323
|
// @public
|
324
324
|
export interface ConnectToTargetAzureDbForPostgreSqlSyncTaskInput {
|
@@ -336,11 +336,11 @@ export interface ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput {
|
|
336
336
|
}
|
337
337
|
|
338
338
|
// @public
|
339
|
-
export
|
340
|
-
taskType: "ConnectToTarget.AzureDbForPostgreSql.Sync";
|
339
|
+
export interface ConnectToTargetAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
341
340
|
input?: ConnectToTargetAzureDbForPostgreSqlSyncTaskInput;
|
342
341
|
readonly output?: ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput[];
|
343
|
-
|
342
|
+
taskType: "ConnectToTarget.AzureDbForPostgreSql.Sync";
|
343
|
+
}
|
344
344
|
|
345
345
|
// @public
|
346
346
|
export interface ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskInput {
|
@@ -365,11 +365,11 @@ export interface ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutputDatabase
|
|
365
365
|
}
|
366
366
|
|
367
367
|
// @public
|
368
|
-
export
|
369
|
-
taskType: "ConnectToTarget.Oracle.AzureDbForPostgreSql.Sync";
|
368
|
+
export interface ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
370
369
|
input?: ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskInput;
|
371
370
|
readonly output?: ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutput[];
|
372
|
-
|
371
|
+
taskType: "ConnectToTarget.Oracle.AzureDbForPostgreSql.Sync";
|
372
|
+
}
|
373
373
|
|
374
374
|
// @public
|
375
375
|
export interface ConnectToTargetSqlDbSyncTaskInput {
|
@@ -378,11 +378,11 @@ export interface ConnectToTargetSqlDbSyncTaskInput {
|
|
378
378
|
}
|
379
379
|
|
380
380
|
// @public
|
381
|
-
export
|
382
|
-
taskType: "ConnectToTarget.SqlDb.Sync";
|
381
|
+
export interface ConnectToTargetSqlDbSyncTaskProperties extends ProjectTaskProperties {
|
383
382
|
input?: ConnectToTargetSqlDbSyncTaskInput;
|
384
383
|
readonly output?: ConnectToTargetSqlDbTaskOutput[];
|
385
|
-
|
384
|
+
taskType: "ConnectToTarget.SqlDb.Sync";
|
385
|
+
}
|
386
386
|
|
387
387
|
// @public
|
388
388
|
export interface ConnectToTargetSqlDbTaskInput {
|
@@ -398,11 +398,11 @@ export interface ConnectToTargetSqlDbTaskOutput {
|
|
398
398
|
}
|
399
399
|
|
400
400
|
// @public
|
401
|
-
export
|
402
|
-
taskType: "ConnectToTarget.SqlDb";
|
401
|
+
export interface ConnectToTargetSqlDbTaskProperties extends ProjectTaskProperties {
|
403
402
|
input?: ConnectToTargetSqlDbTaskInput;
|
404
403
|
readonly output?: ConnectToTargetSqlDbTaskOutput[];
|
405
|
-
|
404
|
+
taskType: "ConnectToTarget.SqlDb";
|
405
|
+
}
|
406
406
|
|
407
407
|
// @public
|
408
408
|
export interface ConnectToTargetSqlMISyncTaskInput {
|
@@ -418,11 +418,11 @@ export interface ConnectToTargetSqlMISyncTaskOutput {
|
|
418
418
|
}
|
419
419
|
|
420
420
|
// @public
|
421
|
-
export
|
422
|
-
taskType: "ConnectToTarget.AzureSqlDbMI.Sync.LRS";
|
421
|
+
export interface ConnectToTargetSqlMISyncTaskProperties extends ProjectTaskProperties {
|
423
422
|
input?: ConnectToTargetSqlMISyncTaskInput;
|
424
423
|
readonly output?: ConnectToTargetSqlMISyncTaskOutput[];
|
425
|
-
|
424
|
+
taskType: "ConnectToTarget.AzureSqlDbMI.Sync.LRS";
|
425
|
+
}
|
426
426
|
|
427
427
|
// @public
|
428
428
|
export interface ConnectToTargetSqlMITaskInput {
|
@@ -443,11 +443,11 @@ export interface ConnectToTargetSqlMITaskOutput {
|
|
443
443
|
}
|
444
444
|
|
445
445
|
// @public
|
446
|
-
export
|
447
|
-
taskType: "ConnectToTarget.AzureSqlDbMI";
|
446
|
+
export interface ConnectToTargetSqlMITaskProperties extends ProjectTaskProperties {
|
448
447
|
input?: ConnectToTargetSqlMITaskInput;
|
449
448
|
readonly output?: ConnectToTargetSqlMITaskOutput[];
|
450
|
-
|
449
|
+
taskType: "ConnectToTarget.AzureSqlDbMI";
|
450
|
+
}
|
451
451
|
|
452
452
|
// @public
|
453
453
|
export type CreatedByType = string;
|
@@ -517,10 +517,10 @@ export interface DatabaseInfo {
|
|
517
517
|
}
|
518
518
|
|
519
519
|
// @public
|
520
|
-
export
|
521
|
-
readonly systemData?: SystemData;
|
520
|
+
export interface DatabaseMigration extends ProxyResource {
|
522
521
|
properties?: DatabaseMigrationPropertiesUnion;
|
523
|
-
|
522
|
+
readonly systemData?: SystemData;
|
523
|
+
}
|
524
524
|
|
525
525
|
// @public
|
526
526
|
export interface DatabaseMigrationListResult {
|
@@ -544,39 +544,39 @@ export interface DatabaseMigrationProperties {
|
|
544
544
|
}
|
545
545
|
|
546
546
|
// @public
|
547
|
-
export
|
547
|
+
export interface DatabaseMigrationPropertiesSqlMi extends DatabaseMigrationProperties {
|
548
|
+
backupConfiguration?: BackupConfiguration;
|
548
549
|
kind: "SqlMi";
|
549
550
|
readonly migrationStatusDetails?: MigrationStatusDetails;
|
550
|
-
targetDatabaseCollation?: string;
|
551
|
-
provisioningError?: string;
|
552
|
-
backupConfiguration?: BackupConfiguration;
|
553
551
|
offlineConfiguration?: OfflineConfiguration;
|
554
|
-
|
552
|
+
provisioningError?: string;
|
553
|
+
targetDatabaseCollation?: string;
|
554
|
+
}
|
555
555
|
|
556
556
|
// @public
|
557
|
-
export
|
557
|
+
export interface DatabaseMigrationPropertiesSqlVm extends DatabaseMigrationProperties {
|
558
|
+
backupConfiguration?: BackupConfiguration;
|
558
559
|
kind: "SqlVm";
|
559
560
|
readonly migrationStatusDetails?: MigrationStatusDetails;
|
560
|
-
targetDatabaseCollation?: string;
|
561
|
-
provisioningError?: string;
|
562
|
-
backupConfiguration?: BackupConfiguration;
|
563
561
|
offlineConfiguration?: OfflineConfiguration;
|
564
|
-
|
562
|
+
provisioningError?: string;
|
563
|
+
targetDatabaseCollation?: string;
|
564
|
+
}
|
565
565
|
|
566
566
|
// @public (undocumented)
|
567
567
|
export type DatabaseMigrationPropertiesUnion = DatabaseMigrationProperties | DatabaseMigrationPropertiesSqlMi | DatabaseMigrationPropertiesSqlVm;
|
568
568
|
|
569
569
|
// @public
|
570
|
-
export
|
571
|
-
readonly systemData?: SystemData;
|
570
|
+
export interface DatabaseMigrationSqlMi extends ProxyResource {
|
572
571
|
properties?: DatabaseMigrationPropertiesSqlMi;
|
573
|
-
|
572
|
+
readonly systemData?: SystemData;
|
573
|
+
}
|
574
574
|
|
575
575
|
// @public
|
576
|
-
export
|
577
|
-
readonly systemData?: SystemData;
|
576
|
+
export interface DatabaseMigrationSqlVm extends ProxyResource {
|
578
577
|
properties?: DatabaseMigrationPropertiesSqlVm;
|
579
|
-
|
578
|
+
readonly systemData?: SystemData;
|
579
|
+
}
|
580
580
|
|
581
581
|
// @public
|
582
582
|
export interface DatabaseMigrationsSqlMi {
|
@@ -678,9 +678,9 @@ export interface DatabaseObjectName {
|
|
678
678
|
export type DatabaseState = string;
|
679
679
|
|
680
680
|
// @public
|
681
|
-
export
|
681
|
+
export interface DatabaseSummaryResult extends DataItemMigrationSummaryResult {
|
682
682
|
readonly sizeMB?: number;
|
683
|
-
}
|
683
|
+
}
|
684
684
|
|
685
685
|
// @public
|
686
686
|
export interface DatabaseTable {
|
@@ -771,17 +771,17 @@ export interface DataMigrationProjectMetadata {
|
|
771
771
|
export type DataMigrationResultCode = string;
|
772
772
|
|
773
773
|
// @public
|
774
|
-
export
|
774
|
+
export interface DataMigrationService extends TrackedResource {
|
775
|
+
autoStopDelay?: string;
|
776
|
+
deleteResourcesOnStop?: boolean;
|
775
777
|
etag?: string;
|
776
778
|
kind?: string;
|
777
|
-
sku?: ServiceSku;
|
778
779
|
readonly provisioningState?: ServiceProvisioningState;
|
779
780
|
publicKey?: string;
|
780
|
-
|
781
|
+
sku?: ServiceSku;
|
781
782
|
virtualNicId?: string;
|
782
|
-
|
783
|
-
|
784
|
-
};
|
783
|
+
virtualSubnetId?: string;
|
784
|
+
}
|
785
785
|
|
786
786
|
// @public
|
787
787
|
export interface DataMigrationServiceList {
|
@@ -910,6 +910,9 @@ export interface FilesUpdateOptionalParams extends coreClient.OperationOptions {
|
|
910
910
|
// @public
|
911
911
|
export type FilesUpdateResponse = ProjectFile;
|
912
912
|
|
913
|
+
// @public
|
914
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
915
|
+
|
913
916
|
// @public
|
914
917
|
export interface GetProjectDetailsNonSqlTaskInput {
|
915
918
|
projectLocation: string;
|
@@ -930,11 +933,11 @@ export interface GetTdeCertificatesSqlTaskOutput {
|
|
930
933
|
}
|
931
934
|
|
932
935
|
// @public
|
933
|
-
export
|
934
|
-
taskType: "GetTDECertificates.Sql";
|
936
|
+
export interface GetTdeCertificatesSqlTaskProperties extends ProjectTaskProperties {
|
935
937
|
input?: GetTdeCertificatesSqlTaskInput;
|
936
938
|
readonly output?: GetTdeCertificatesSqlTaskOutput[];
|
937
|
-
|
939
|
+
taskType: "GetTDECertificates.Sql";
|
940
|
+
}
|
938
941
|
|
939
942
|
// @public
|
940
943
|
export interface GetUserTablesMySqlTaskInput {
|
@@ -950,11 +953,11 @@ export interface GetUserTablesMySqlTaskOutput {
|
|
950
953
|
}
|
951
954
|
|
952
955
|
// @public
|
953
|
-
export
|
954
|
-
taskType: "GetUserTablesMySql";
|
956
|
+
export interface GetUserTablesMySqlTaskProperties extends ProjectTaskProperties {
|
955
957
|
input?: GetUserTablesMySqlTaskInput;
|
956
958
|
readonly output?: GetUserTablesMySqlTaskOutput[];
|
957
|
-
|
959
|
+
taskType: "GetUserTablesMySql";
|
960
|
+
}
|
958
961
|
|
959
962
|
// @public
|
960
963
|
export interface GetUserTablesOracleTaskInput {
|
@@ -970,11 +973,11 @@ export interface GetUserTablesOracleTaskOutput {
|
|
970
973
|
}
|
971
974
|
|
972
975
|
// @public
|
973
|
-
export
|
974
|
-
taskType: "GetUserTablesOracle";
|
976
|
+
export interface GetUserTablesOracleTaskProperties extends ProjectTaskProperties {
|
975
977
|
input?: GetUserTablesOracleTaskInput;
|
976
978
|
readonly output?: GetUserTablesOracleTaskOutput[];
|
977
|
-
|
979
|
+
taskType: "GetUserTablesOracle";
|
980
|
+
}
|
978
981
|
|
979
982
|
// @public
|
980
983
|
export interface GetUserTablesPostgreSqlTaskInput {
|
@@ -990,11 +993,11 @@ export interface GetUserTablesPostgreSqlTaskOutput {
|
|
990
993
|
}
|
991
994
|
|
992
995
|
// @public
|
993
|
-
export
|
994
|
-
taskType: "GetUserTablesPostgreSql";
|
996
|
+
export interface GetUserTablesPostgreSqlTaskProperties extends ProjectTaskProperties {
|
995
997
|
input?: GetUserTablesPostgreSqlTaskInput;
|
996
998
|
readonly output?: GetUserTablesPostgreSqlTaskOutput[];
|
997
|
-
|
999
|
+
taskType: "GetUserTablesPostgreSql";
|
1000
|
+
}
|
998
1001
|
|
999
1002
|
// @public
|
1000
1003
|
export interface GetUserTablesSqlSyncTaskInput {
|
@@ -1013,11 +1016,11 @@ export interface GetUserTablesSqlSyncTaskOutput {
|
|
1013
1016
|
}
|
1014
1017
|
|
1015
1018
|
// @public
|
1016
|
-
export
|
1017
|
-
taskType: "GetUserTables.AzureSqlDb.Sync";
|
1019
|
+
export interface GetUserTablesSqlSyncTaskProperties extends ProjectTaskProperties {
|
1018
1020
|
input?: GetUserTablesSqlSyncTaskInput;
|
1019
1021
|
readonly output?: GetUserTablesSqlSyncTaskOutput[];
|
1020
|
-
|
1022
|
+
taskType: "GetUserTables.AzureSqlDb.Sync";
|
1023
|
+
}
|
1021
1024
|
|
1022
1025
|
// @public
|
1023
1026
|
export interface GetUserTablesSqlTaskInput {
|
@@ -1033,11 +1036,11 @@ export interface GetUserTablesSqlTaskOutput {
|
|
1033
1036
|
}
|
1034
1037
|
|
1035
1038
|
// @public
|
1036
|
-
export
|
1037
|
-
taskType: "GetUserTables.Sql";
|
1039
|
+
export interface GetUserTablesSqlTaskProperties extends ProjectTaskProperties {
|
1038
1040
|
input?: GetUserTablesSqlTaskInput;
|
1039
1041
|
readonly output?: GetUserTablesSqlTaskOutput[];
|
1040
|
-
|
1042
|
+
taskType: "GetUserTables.Sql";
|
1043
|
+
}
|
1041
1044
|
|
1042
1045
|
// @public
|
1043
1046
|
export interface InstallOCIDriverTaskInput {
|
@@ -1050,11 +1053,11 @@ export interface InstallOCIDriverTaskOutput {
|
|
1050
1053
|
}
|
1051
1054
|
|
1052
1055
|
// @public
|
1053
|
-
export
|
1054
|
-
taskType: "Service.Install.OCI";
|
1056
|
+
export interface InstallOCIDriverTaskProperties extends ProjectTaskProperties {
|
1055
1057
|
input?: InstallOCIDriverTaskInput;
|
1056
1058
|
readonly output?: InstallOCIDriverTaskOutput[];
|
1057
|
-
|
1059
|
+
taskType: "Service.Install.OCI";
|
1060
|
+
}
|
1058
1061
|
|
1059
1062
|
// @public
|
1060
1063
|
export interface IntegrationRuntimeMonitoringData {
|
@@ -1064,841 +1067,527 @@ export interface IntegrationRuntimeMonitoringData {
|
|
1064
1067
|
|
1065
1068
|
// @public
|
1066
1069
|
export enum KnownAuthenticationType {
|
1067
|
-
// (undocumented)
|
1068
1070
|
ActiveDirectoryIntegrated = "ActiveDirectoryIntegrated",
|
1069
|
-
// (undocumented)
|
1070
1071
|
ActiveDirectoryPassword = "ActiveDirectoryPassword",
|
1071
|
-
// (undocumented)
|
1072
1072
|
None = "None",
|
1073
|
-
// (undocumented)
|
1074
1073
|
SqlAuthentication = "SqlAuthentication",
|
1075
|
-
// (undocumented)
|
1076
1074
|
WindowsAuthentication = "WindowsAuthentication"
|
1077
1075
|
}
|
1078
1076
|
|
1079
1077
|
// @public
|
1080
1078
|
export enum KnownBackupFileStatus {
|
1081
|
-
// (undocumented)
|
1082
1079
|
Arrived = "Arrived",
|
1083
|
-
// (undocumented)
|
1084
1080
|
Cancelled = "Cancelled",
|
1085
|
-
// (undocumented)
|
1086
1081
|
Queued = "Queued",
|
1087
|
-
// (undocumented)
|
1088
1082
|
Restored = "Restored",
|
1089
|
-
// (undocumented)
|
1090
1083
|
Restoring = "Restoring",
|
1091
|
-
// (undocumented)
|
1092
1084
|
Uploaded = "Uploaded",
|
1093
|
-
// (undocumented)
|
1094
1085
|
Uploading = "Uploading"
|
1095
1086
|
}
|
1096
1087
|
|
1097
1088
|
// @public
|
1098
1089
|
export enum KnownBackupMode {
|
1099
|
-
// (undocumented)
|
1100
1090
|
CreateBackup = "CreateBackup",
|
1101
|
-
// (undocumented)
|
1102
1091
|
ExistingBackup = "ExistingBackup"
|
1103
1092
|
}
|
1104
1093
|
|
1105
1094
|
// @public
|
1106
1095
|
export enum KnownBackupType {
|
1107
|
-
// (undocumented)
|
1108
1096
|
Database = "Database",
|
1109
|
-
// (undocumented)
|
1110
1097
|
DifferentialDatabase = "DifferentialDatabase",
|
1111
|
-
// (undocumented)
|
1112
1098
|
DifferentialFile = "DifferentialFile",
|
1113
|
-
// (undocumented)
|
1114
1099
|
DifferentialPartial = "DifferentialPartial",
|
1115
|
-
// (undocumented)
|
1116
1100
|
File = "File",
|
1117
|
-
// (undocumented)
|
1118
1101
|
Partial = "Partial",
|
1119
|
-
// (undocumented)
|
1120
1102
|
TransactionLog = "TransactionLog"
|
1121
1103
|
}
|
1122
1104
|
|
1123
1105
|
// @public
|
1124
1106
|
export enum KnownCommandState {
|
1125
|
-
// (undocumented)
|
1126
1107
|
Accepted = "Accepted",
|
1127
|
-
// (undocumented)
|
1128
1108
|
Failed = "Failed",
|
1129
|
-
// (undocumented)
|
1130
1109
|
Running = "Running",
|
1131
|
-
// (undocumented)
|
1132
1110
|
Succeeded = "Succeeded",
|
1133
|
-
// (undocumented)
|
1134
1111
|
Unknown = "Unknown"
|
1135
1112
|
}
|
1136
1113
|
|
1137
1114
|
// @public
|
1138
1115
|
export enum KnownCommandType {
|
1139
|
-
// (undocumented)
|
1140
1116
|
Cancel = "cancel",
|
1141
|
-
// (undocumented)
|
1142
1117
|
Finish = "finish",
|
1143
|
-
// (undocumented)
|
1144
1118
|
MigrateSqlServerAzureDbSqlMiComplete = "Migrate.SqlServer.AzureDbSqlMi.Complete",
|
1145
|
-
// (undocumented)
|
1146
1119
|
MigrateSyncCompleteDatabase = "Migrate.Sync.Complete.Database",
|
1147
|
-
// (undocumented)
|
1148
1120
|
Restart = "restart"
|
1149
1121
|
}
|
1150
1122
|
|
1151
1123
|
// @public
|
1152
1124
|
export enum KnownCreatedByType {
|
1153
|
-
// (undocumented)
|
1154
1125
|
Application = "Application",
|
1155
|
-
// (undocumented)
|
1156
1126
|
Key = "Key",
|
1157
|
-
// (undocumented)
|
1158
1127
|
ManagedIdentity = "ManagedIdentity",
|
1159
|
-
// (undocumented)
|
1160
1128
|
User = "User"
|
1161
1129
|
}
|
1162
1130
|
|
1163
1131
|
// @public
|
1164
1132
|
export enum KnownDatabaseCompatLevel {
|
1165
|
-
// (undocumented)
|
1166
1133
|
CompatLevel100 = "CompatLevel100",
|
1167
|
-
// (undocumented)
|
1168
1134
|
CompatLevel110 = "CompatLevel110",
|
1169
|
-
// (undocumented)
|
1170
1135
|
CompatLevel120 = "CompatLevel120",
|
1171
|
-
// (undocumented)
|
1172
1136
|
CompatLevel130 = "CompatLevel130",
|
1173
|
-
// (undocumented)
|
1174
1137
|
CompatLevel140 = "CompatLevel140",
|
1175
|
-
// (undocumented)
|
1176
1138
|
CompatLevel80 = "CompatLevel80",
|
1177
|
-
// (undocumented)
|
1178
1139
|
CompatLevel90 = "CompatLevel90"
|
1179
1140
|
}
|
1180
1141
|
|
1181
1142
|
// @public
|
1182
1143
|
export enum KnownDatabaseFileType {
|
1183
|
-
// (undocumented)
|
1184
1144
|
Filestream = "Filestream",
|
1185
|
-
// (undocumented)
|
1186
1145
|
Fulltext = "Fulltext",
|
1187
|
-
// (undocumented)
|
1188
1146
|
Log = "Log",
|
1189
|
-
// (undocumented)
|
1190
1147
|
NotSupported = "NotSupported",
|
1191
|
-
// (undocumented)
|
1192
1148
|
Rows = "Rows"
|
1193
1149
|
}
|
1194
1150
|
|
1195
1151
|
// @public
|
1196
1152
|
export enum KnownDatabaseMigrationStage {
|
1197
|
-
// (undocumented)
|
1198
1153
|
Backup = "Backup",
|
1199
|
-
// (undocumented)
|
1200
1154
|
Completed = "Completed",
|
1201
|
-
// (undocumented)
|
1202
1155
|
FileCopy = "FileCopy",
|
1203
|
-
// (undocumented)
|
1204
1156
|
Initialize = "Initialize",
|
1205
|
-
// (undocumented)
|
1206
1157
|
None = "None",
|
1207
|
-
// (undocumented)
|
1208
1158
|
Restore = "Restore"
|
1209
1159
|
}
|
1210
1160
|
|
1211
1161
|
// @public
|
1212
1162
|
export enum KnownDatabaseMigrationState {
|
1213
|
-
// (undocumented)
|
1214
1163
|
Cancelled = "CANCELLED",
|
1215
|
-
// (undocumented)
|
1216
1164
|
Completed = "COMPLETED",
|
1217
|
-
// (undocumented)
|
1218
1165
|
CutoverStart = "CUTOVER_START",
|
1219
|
-
// (undocumented)
|
1220
1166
|
Failed = "FAILED",
|
1221
|
-
// (undocumented)
|
1222
1167
|
FullBackupUploadStart = "FULL_BACKUP_UPLOAD_START",
|
1223
|
-
// (undocumented)
|
1224
1168
|
Initial = "INITIAL",
|
1225
|
-
// (undocumented)
|
1226
1169
|
LOGShippingStart = "LOG_SHIPPING_START",
|
1227
|
-
// (undocumented)
|
1228
1170
|
PostCutoverComplete = "POST_CUTOVER_COMPLETE",
|
1229
|
-
// (undocumented)
|
1230
1171
|
Undefined = "UNDEFINED",
|
1231
|
-
// (undocumented)
|
1232
1172
|
UploadLOGFilesStart = "UPLOAD_LOG_FILES_START"
|
1233
1173
|
}
|
1234
1174
|
|
1235
1175
|
// @public
|
1236
1176
|
export enum KnownDatabaseState {
|
1237
|
-
// (undocumented)
|
1238
1177
|
Copying = "Copying",
|
1239
|
-
// (undocumented)
|
1240
1178
|
Emergency = "Emergency",
|
1241
|
-
// (undocumented)
|
1242
1179
|
Offline = "Offline",
|
1243
|
-
// (undocumented)
|
1244
1180
|
OfflineSecondary = "OfflineSecondary",
|
1245
|
-
// (undocumented)
|
1246
1181
|
Online = "Online",
|
1247
|
-
// (undocumented)
|
1248
1182
|
Recovering = "Recovering",
|
1249
|
-
// (undocumented)
|
1250
1183
|
RecoveryPending = "RecoveryPending",
|
1251
|
-
// (undocumented)
|
1252
1184
|
Restoring = "Restoring",
|
1253
|
-
// (undocumented)
|
1254
1185
|
Suspect = "Suspect"
|
1255
1186
|
}
|
1256
1187
|
|
1257
1188
|
// @public
|
1258
1189
|
export enum KnownDataMigrationResultCode {
|
1259
|
-
// (undocumented)
|
1260
1190
|
Completed = "Completed",
|
1261
|
-
// (undocumented)
|
1262
1191
|
FatalError = "FatalError",
|
1263
|
-
// (undocumented)
|
1264
1192
|
Initial = "Initial",
|
1265
|
-
// (undocumented)
|
1266
1193
|
ObjectNotExistsInSource = "ObjectNotExistsInSource",
|
1267
|
-
// (undocumented)
|
1268
1194
|
ObjectNotExistsInTarget = "ObjectNotExistsInTarget",
|
1269
|
-
// (undocumented)
|
1270
1195
|
TargetObjectIsInaccessible = "TargetObjectIsInaccessible"
|
1271
1196
|
}
|
1272
1197
|
|
1273
1198
|
// @public
|
1274
1199
|
export enum KnownErrorType {
|
1275
|
-
// (undocumented)
|
1276
1200
|
Default = "Default",
|
1277
|
-
// (undocumented)
|
1278
1201
|
Error = "Error",
|
1279
|
-
// (undocumented)
|
1280
1202
|
Warning = "Warning"
|
1281
1203
|
}
|
1282
1204
|
|
1283
1205
|
// @public
|
1284
1206
|
export enum KnownLoginMigrationStage {
|
1285
|
-
// (undocumented)
|
1286
1207
|
AssignRoleMembership = "AssignRoleMembership",
|
1287
|
-
// (undocumented)
|
1288
1208
|
AssignRoleOwnership = "AssignRoleOwnership",
|
1289
|
-
// (undocumented)
|
1290
1209
|
Completed = "Completed",
|
1291
|
-
// (undocumented)
|
1292
1210
|
EstablishObjectPermissions = "EstablishObjectPermissions",
|
1293
|
-
// (undocumented)
|
1294
1211
|
EstablishServerPermissions = "EstablishServerPermissions",
|
1295
|
-
// (undocumented)
|
1296
1212
|
EstablishUserMapping = "EstablishUserMapping",
|
1297
|
-
// (undocumented)
|
1298
1213
|
Initialize = "Initialize",
|
1299
|
-
// (undocumented)
|
1300
1214
|
LoginMigration = "LoginMigration",
|
1301
|
-
// (undocumented)
|
1302
1215
|
None = "None"
|
1303
1216
|
}
|
1304
1217
|
|
1305
1218
|
// @public
|
1306
1219
|
export enum KnownLoginType {
|
1307
|
-
// (undocumented)
|
1308
1220
|
AsymmetricKey = "AsymmetricKey",
|
1309
|
-
// (undocumented)
|
1310
1221
|
Certificate = "Certificate",
|
1311
|
-
// (undocumented)
|
1312
1222
|
ExternalGroup = "ExternalGroup",
|
1313
|
-
// (undocumented)
|
1314
1223
|
ExternalUser = "ExternalUser",
|
1315
|
-
// (undocumented)
|
1316
1224
|
SqlLogin = "SqlLogin",
|
1317
|
-
// (undocumented)
|
1318
1225
|
WindowsGroup = "WindowsGroup",
|
1319
|
-
// (undocumented)
|
1320
1226
|
WindowsUser = "WindowsUser"
|
1321
1227
|
}
|
1322
1228
|
|
1323
1229
|
// @public
|
1324
1230
|
export enum KnownMigrationState {
|
1325
|
-
// (undocumented)
|
1326
1231
|
Completed = "Completed",
|
1327
|
-
// (undocumented)
|
1328
1232
|
Failed = "Failed",
|
1329
|
-
// (undocumented)
|
1330
1233
|
InProgress = "InProgress",
|
1331
|
-
// (undocumented)
|
1332
1234
|
None = "None",
|
1333
|
-
// (undocumented)
|
1334
1235
|
Skipped = "Skipped",
|
1335
|
-
// (undocumented)
|
1336
1236
|
Stopped = "Stopped",
|
1337
|
-
// (undocumented)
|
1338
1237
|
Warning = "Warning"
|
1339
1238
|
}
|
1340
1239
|
|
1341
1240
|
// @public
|
1342
1241
|
export enum KnownMigrationStatus {
|
1343
|
-
// (undocumented)
|
1344
1242
|
Completed = "Completed",
|
1345
|
-
// (undocumented)
|
1346
1243
|
CompletedWithWarnings = "CompletedWithWarnings",
|
1347
|
-
// (undocumented)
|
1348
1244
|
Configured = "Configured",
|
1349
|
-
// (undocumented)
|
1350
1245
|
Connecting = "Connecting",
|
1351
|
-
// (undocumented)
|
1352
1246
|
Default = "Default",
|
1353
|
-
// (undocumented)
|
1354
1247
|
Error = "Error",
|
1355
|
-
// (undocumented)
|
1356
1248
|
Running = "Running",
|
1357
|
-
// (undocumented)
|
1358
1249
|
SelectLogins = "SelectLogins",
|
1359
|
-
// (undocumented)
|
1360
1250
|
SourceAndTargetSelected = "SourceAndTargetSelected",
|
1361
|
-
// (undocumented)
|
1362
1251
|
Stopped = "Stopped"
|
1363
1252
|
}
|
1364
1253
|
|
1365
1254
|
// @public
|
1366
1255
|
export enum KnownMongoDbClusterType {
|
1367
|
-
// (undocumented)
|
1368
1256
|
BlobContainer = "BlobContainer",
|
1369
|
-
// (undocumented)
|
1370
1257
|
CosmosDb = "CosmosDb",
|
1371
|
-
// (undocumented)
|
1372
1258
|
MongoDb = "MongoDb"
|
1373
1259
|
}
|
1374
1260
|
|
1375
1261
|
// @public
|
1376
1262
|
export enum KnownMongoDbErrorType {
|
1377
|
-
// (undocumented)
|
1378
1263
|
Error = "Error",
|
1379
|
-
// (undocumented)
|
1380
1264
|
ValidationError = "ValidationError",
|
1381
|
-
// (undocumented)
|
1382
1265
|
Warning = "Warning"
|
1383
1266
|
}
|
1384
1267
|
|
1385
1268
|
// @public
|
1386
1269
|
export enum KnownMongoDbMigrationState {
|
1387
|
-
// (undocumented)
|
1388
1270
|
Canceled = "Canceled",
|
1389
|
-
// (undocumented)
|
1390
1271
|
Complete = "Complete",
|
1391
|
-
// (undocumented)
|
1392
1272
|
Copying = "Copying",
|
1393
|
-
// (undocumented)
|
1394
1273
|
Failed = "Failed",
|
1395
|
-
// (undocumented)
|
1396
1274
|
Finalizing = "Finalizing",
|
1397
|
-
// (undocumented)
|
1398
1275
|
Initializing = "Initializing",
|
1399
|
-
// (undocumented)
|
1400
1276
|
InitialReplay = "InitialReplay",
|
1401
|
-
// (undocumented)
|
1402
1277
|
NotStarted = "NotStarted",
|
1403
|
-
// (undocumented)
|
1404
1278
|
Replaying = "Replaying",
|
1405
|
-
// (undocumented)
|
1406
1279
|
Restarting = "Restarting",
|
1407
|
-
// (undocumented)
|
1408
1280
|
ValidatingInput = "ValidatingInput"
|
1409
1281
|
}
|
1410
1282
|
|
1411
1283
|
// @public
|
1412
1284
|
export enum KnownMongoDbProgressResultType {
|
1413
|
-
// (undocumented)
|
1414
1285
|
Collection = "Collection",
|
1415
|
-
// (undocumented)
|
1416
1286
|
Database = "Database",
|
1417
|
-
// (undocumented)
|
1418
1287
|
Migration = "Migration"
|
1419
1288
|
}
|
1420
1289
|
|
1421
1290
|
// @public
|
1422
1291
|
export enum KnownMongoDbReplication {
|
1423
|
-
// (undocumented)
|
1424
1292
|
Continuous = "Continuous",
|
1425
|
-
// (undocumented)
|
1426
1293
|
Disabled = "Disabled",
|
1427
|
-
// (undocumented)
|
1428
1294
|
OneTime = "OneTime"
|
1429
1295
|
}
|
1430
1296
|
|
1431
1297
|
// @public
|
1432
1298
|
export enum KnownMongoDbShardKeyOrder {
|
1433
|
-
// (undocumented)
|
1434
1299
|
Forward = "Forward",
|
1435
|
-
// (undocumented)
|
1436
1300
|
Hashed = "Hashed",
|
1437
|
-
// (undocumented)
|
1438
1301
|
Reverse = "Reverse"
|
1439
1302
|
}
|
1440
1303
|
|
1441
1304
|
// @public
|
1442
1305
|
export enum KnownMySqlTargetPlatformType {
|
1443
|
-
// (undocumented)
|
1444
1306
|
AzureDbForMySQL = "AzureDbForMySQL",
|
1445
|
-
// (undocumented)
|
1446
1307
|
SqlServer = "SqlServer"
|
1447
1308
|
}
|
1448
1309
|
|
1449
1310
|
// @public
|
1450
1311
|
export enum KnownNameCheckFailureReason {
|
1451
|
-
// (undocumented)
|
1452
1312
|
AlreadyExists = "AlreadyExists",
|
1453
|
-
// (undocumented)
|
1454
1313
|
Invalid = "Invalid"
|
1455
1314
|
}
|
1456
1315
|
|
1457
1316
|
// @public
|
1458
1317
|
export enum KnownObjectType {
|
1459
|
-
// (undocumented)
|
1460
1318
|
Function = "Function",
|
1461
|
-
// (undocumented)
|
1462
1319
|
StoredProcedures = "StoredProcedures",
|
1463
|
-
// (undocumented)
|
1464
1320
|
Table = "Table",
|
1465
|
-
// (undocumented)
|
1466
1321
|
User = "User",
|
1467
|
-
// (undocumented)
|
1468
1322
|
View = "View"
|
1469
1323
|
}
|
1470
1324
|
|
1471
1325
|
// @public
|
1472
1326
|
export enum KnownOperationOrigin {
|
1473
|
-
// (undocumented)
|
1474
1327
|
System = "system",
|
1475
|
-
// (undocumented)
|
1476
1328
|
User = "user"
|
1477
1329
|
}
|
1478
1330
|
|
1479
1331
|
// @public
|
1480
1332
|
export enum KnownProjectProvisioningState {
|
1481
|
-
// (undocumented)
|
1482
1333
|
Deleting = "Deleting",
|
1483
|
-
// (undocumented)
|
1484
1334
|
Succeeded = "Succeeded"
|
1485
1335
|
}
|
1486
1336
|
|
1487
1337
|
// @public
|
1488
1338
|
export enum KnownProjectSourcePlatform {
|
1489
|
-
// (undocumented)
|
1490
1339
|
MongoDb = "MongoDb",
|
1491
|
-
// (undocumented)
|
1492
1340
|
MySQL = "MySQL",
|
1493
|
-
// (undocumented)
|
1494
1341
|
PostgreSql = "PostgreSql",
|
1495
|
-
// (undocumented)
|
1496
1342
|
SQL = "SQL",
|
1497
|
-
// (undocumented)
|
1498
1343
|
Unknown = "Unknown"
|
1499
1344
|
}
|
1500
1345
|
|
1501
1346
|
// @public
|
1502
1347
|
export enum KnownProjectTargetPlatform {
|
1503
|
-
// (undocumented)
|
1504
1348
|
AzureDbForMySql = "AzureDbForMySql",
|
1505
|
-
// (undocumented)
|
1506
1349
|
AzureDbForPostgreSql = "AzureDbForPostgreSql",
|
1507
|
-
// (undocumented)
|
1508
1350
|
MongoDb = "MongoDb",
|
1509
|
-
// (undocumented)
|
1510
1351
|
Sqldb = "SQLDB",
|
1511
|
-
// (undocumented)
|
1512
1352
|
Sqlmi = "SQLMI",
|
1513
|
-
// (undocumented)
|
1514
1353
|
Unknown = "Unknown"
|
1515
1354
|
}
|
1516
1355
|
|
1517
1356
|
// @public
|
1518
1357
|
export enum KnownReplicateMigrationState {
|
1519
|
-
// (undocumented)
|
1520
1358
|
ActionRequired = "ACTION_REQUIRED",
|
1521
|
-
// (undocumented)
|
1522
1359
|
Complete = "COMPLETE",
|
1523
|
-
// (undocumented)
|
1524
1360
|
Failed = "FAILED",
|
1525
|
-
// (undocumented)
|
1526
1361
|
Pending = "PENDING",
|
1527
|
-
// (undocumented)
|
1528
1362
|
Undefined = "UNDEFINED",
|
1529
|
-
// (undocumented)
|
1530
1363
|
Validating = "VALIDATING"
|
1531
1364
|
}
|
1532
1365
|
|
1533
1366
|
// @public
|
1534
1367
|
export enum KnownResourceSkuCapacityScaleType {
|
1535
|
-
// (undocumented)
|
1536
1368
|
Automatic = "Automatic",
|
1537
|
-
// (undocumented)
|
1538
1369
|
Manual = "Manual",
|
1539
|
-
// (undocumented)
|
1540
1370
|
None = "None"
|
1541
1371
|
}
|
1542
1372
|
|
1543
1373
|
// @public
|
1544
1374
|
export enum KnownResourceSkuRestrictionsReasonCode {
|
1545
|
-
// (undocumented)
|
1546
1375
|
NotAvailableForSubscription = "NotAvailableForSubscription",
|
1547
|
-
// (undocumented)
|
1548
1376
|
QuotaId = "QuotaId"
|
1549
1377
|
}
|
1550
1378
|
|
1551
1379
|
// @public
|
1552
1380
|
export enum KnownResourceSkuRestrictionsType {
|
1553
|
-
// (undocumented)
|
1554
1381
|
Location = "location"
|
1555
1382
|
}
|
1556
1383
|
|
1557
1384
|
// @public
|
1558
1385
|
export enum KnownResourceType {
|
1559
|
-
// (undocumented)
|
1560
1386
|
SqlMi = "SqlMi",
|
1561
|
-
// (undocumented)
|
1562
1387
|
SqlVm = "SqlVm"
|
1563
1388
|
}
|
1564
1389
|
|
1565
1390
|
// @public
|
1566
1391
|
export enum KnownScenarioSource {
|
1567
|
-
// (undocumented)
|
1568
1392
|
Access = "Access",
|
1569
|
-
// (undocumented)
|
1570
1393
|
DB2 = "DB2",
|
1571
|
-
// (undocumented)
|
1572
1394
|
MongoDB = "MongoDB",
|
1573
|
-
// (undocumented)
|
1574
1395
|
MySQL = "MySQL",
|
1575
|
-
// (undocumented)
|
1576
1396
|
MySqlrds = "MySQLRDS",
|
1577
|
-
// (undocumented)
|
1578
1397
|
Oracle = "Oracle",
|
1579
|
-
// (undocumented)
|
1580
1398
|
PostgreSQL = "PostgreSQL",
|
1581
|
-
// (undocumented)
|
1582
1399
|
PostgreSqlrds = "PostgreSQLRDS",
|
1583
|
-
// (undocumented)
|
1584
1400
|
SQL = "SQL",
|
1585
|
-
// (undocumented)
|
1586
1401
|
Sqlrds = "SQLRDS",
|
1587
|
-
// (undocumented)
|
1588
1402
|
Sybase = "Sybase"
|
1589
1403
|
}
|
1590
1404
|
|
1591
1405
|
// @public
|
1592
1406
|
export enum KnownScenarioTarget {
|
1593
|
-
// (undocumented)
|
1594
1407
|
AzureDBForMySql = "AzureDBForMySql",
|
1595
|
-
// (undocumented)
|
1596
1408
|
AzureDBForPostgresSQL = "AzureDBForPostgresSQL",
|
1597
|
-
// (undocumented)
|
1598
1409
|
MongoDB = "MongoDB",
|
1599
|
-
// (undocumented)
|
1600
1410
|
Sqldb = "SQLDB",
|
1601
|
-
// (undocumented)
|
1602
1411
|
Sqldw = "SQLDW",
|
1603
|
-
// (undocumented)
|
1604
1412
|
Sqlmi = "SQLMI",
|
1605
|
-
// (undocumented)
|
1606
1413
|
SQLServer = "SQLServer"
|
1607
1414
|
}
|
1608
1415
|
|
1609
1416
|
// @public
|
1610
1417
|
export enum KnownSchemaMigrationOption {
|
1611
|
-
// (undocumented)
|
1612
1418
|
ExtractFromSource = "ExtractFromSource",
|
1613
|
-
// (undocumented)
|
1614
1419
|
None = "None",
|
1615
|
-
// (undocumented)
|
1616
1420
|
UseStorageFile = "UseStorageFile"
|
1617
1421
|
}
|
1618
1422
|
|
1619
1423
|
// @public
|
1620
1424
|
export enum KnownSchemaMigrationStage {
|
1621
|
-
// (undocumented)
|
1622
1425
|
CollectingObjects = "CollectingObjects",
|
1623
|
-
// (undocumented)
|
1624
1426
|
Completed = "Completed",
|
1625
|
-
// (undocumented)
|
1626
1427
|
CompletedWithWarnings = "CompletedWithWarnings",
|
1627
|
-
// (undocumented)
|
1628
1428
|
DeployingSchema = "DeployingSchema",
|
1629
|
-
// (undocumented)
|
1630
1429
|
DownloadingScript = "DownloadingScript",
|
1631
|
-
// (undocumented)
|
1632
1430
|
Failed = "Failed",
|
1633
|
-
// (undocumented)
|
1634
1431
|
GeneratingScript = "GeneratingScript",
|
1635
|
-
// (undocumented)
|
1636
1432
|
NotStarted = "NotStarted",
|
1637
|
-
// (undocumented)
|
1638
1433
|
UploadingScript = "UploadingScript",
|
1639
|
-
// (undocumented)
|
1640
1434
|
ValidatingInputs = "ValidatingInputs"
|
1641
1435
|
}
|
1642
1436
|
|
1643
1437
|
// @public
|
1644
1438
|
export enum KnownServiceProvisioningState {
|
1645
|
-
// (undocumented)
|
1646
1439
|
Accepted = "Accepted",
|
1647
|
-
// (undocumented)
|
1648
1440
|
Deleting = "Deleting",
|
1649
|
-
// (undocumented)
|
1650
1441
|
Deploying = "Deploying",
|
1651
|
-
// (undocumented)
|
1652
1442
|
Failed = "Failed",
|
1653
|
-
// (undocumented)
|
1654
1443
|
FailedToStart = "FailedToStart",
|
1655
|
-
// (undocumented)
|
1656
1444
|
FailedToStop = "FailedToStop",
|
1657
|
-
// (undocumented)
|
1658
1445
|
Starting = "Starting",
|
1659
|
-
// (undocumented)
|
1660
1446
|
Stopped = "Stopped",
|
1661
|
-
// (undocumented)
|
1662
1447
|
Stopping = "Stopping",
|
1663
|
-
// (undocumented)
|
1664
1448
|
Succeeded = "Succeeded"
|
1665
1449
|
}
|
1666
1450
|
|
1667
1451
|
// @public
|
1668
1452
|
export enum KnownServiceScalability {
|
1669
|
-
// (undocumented)
|
1670
1453
|
Automatic = "automatic",
|
1671
|
-
// (undocumented)
|
1672
1454
|
Manual = "manual",
|
1673
|
-
// (undocumented)
|
1674
1455
|
None = "none"
|
1675
1456
|
}
|
1676
1457
|
|
1677
1458
|
// @public
|
1678
1459
|
export enum KnownSeverity {
|
1679
|
-
// (undocumented)
|
1680
1460
|
Error = "Error",
|
1681
|
-
// (undocumented)
|
1682
1461
|
Message = "Message",
|
1683
|
-
// (undocumented)
|
1684
1462
|
Warning = "Warning"
|
1685
1463
|
}
|
1686
1464
|
|
1687
1465
|
// @public
|
1688
1466
|
export enum KnownSqlSourcePlatform {
|
1689
|
-
// (undocumented)
|
1690
1467
|
SqlOnPrem = "SqlOnPrem"
|
1691
1468
|
}
|
1692
1469
|
|
1693
1470
|
// @public
|
1694
1471
|
export enum KnownSsisMigrationOverwriteOption {
|
1695
|
-
// (undocumented)
|
1696
1472
|
Ignore = "Ignore",
|
1697
|
-
// (undocumented)
|
1698
1473
|
Overwrite = "Overwrite"
|
1699
1474
|
}
|
1700
1475
|
|
1701
1476
|
// @public
|
1702
1477
|
export enum KnownSsisMigrationStage {
|
1703
|
-
// (undocumented)
|
1704
1478
|
Completed = "Completed",
|
1705
|
-
// (undocumented)
|
1706
1479
|
Initialize = "Initialize",
|
1707
|
-
// (undocumented)
|
1708
1480
|
InProgress = "InProgress",
|
1709
|
-
// (undocumented)
|
1710
1481
|
None = "None"
|
1711
1482
|
}
|
1712
1483
|
|
1713
1484
|
// @public
|
1714
1485
|
export enum KnownSsisStoreType {
|
1715
|
-
// (undocumented)
|
1716
1486
|
SsisCatalog = "SsisCatalog"
|
1717
1487
|
}
|
1718
1488
|
|
1719
1489
|
// @public
|
1720
1490
|
export enum KnownSyncDatabaseMigrationReportingState {
|
1721
|
-
// (undocumented)
|
1722
1491
|
BackupCompleted = "BACKUP_COMPLETED",
|
1723
|
-
// (undocumented)
|
1724
1492
|
BackupINProgress = "BACKUP_IN_PROGRESS",
|
1725
|
-
// (undocumented)
|
1726
1493
|
Cancelled = "CANCELLED",
|
1727
|
-
// (undocumented)
|
1728
1494
|
Cancelling = "CANCELLING",
|
1729
|
-
// (undocumented)
|
1730
1495
|
Complete = "COMPLETE",
|
1731
|
-
// (undocumented)
|
1732
1496
|
Completing = "COMPLETING",
|
1733
|
-
// (undocumented)
|
1734
1497
|
Configuring = "CONFIGURING",
|
1735
|
-
// (undocumented)
|
1736
1498
|
Failed = "FAILED",
|
1737
|
-
// (undocumented)
|
1738
1499
|
Initialiazing = "INITIALIAZING",
|
1739
|
-
// (undocumented)
|
1740
1500
|
ReadyTOComplete = "READY_TO_COMPLETE",
|
1741
|
-
// (undocumented)
|
1742
1501
|
RestoreCompleted = "RESTORE_COMPLETED",
|
1743
|
-
// (undocumented)
|
1744
1502
|
RestoreINProgress = "RESTORE_IN_PROGRESS",
|
1745
|
-
// (undocumented)
|
1746
1503
|
Running = "RUNNING",
|
1747
|
-
// (undocumented)
|
1748
1504
|
Starting = "STARTING",
|
1749
|
-
// (undocumented)
|
1750
1505
|
Undefined = "UNDEFINED",
|
1751
|
-
// (undocumented)
|
1752
1506
|
Validating = "VALIDATING",
|
1753
|
-
// (undocumented)
|
1754
1507
|
ValidationComplete = "VALIDATION_COMPLETE",
|
1755
|
-
// (undocumented)
|
1756
1508
|
ValidationFailed = "VALIDATION_FAILED"
|
1757
1509
|
}
|
1758
1510
|
|
1759
1511
|
// @public
|
1760
1512
|
export enum KnownSyncTableMigrationState {
|
1761
|
-
// (undocumented)
|
1762
1513
|
BeforeLoad = "BEFORE_LOAD",
|
1763
|
-
// (undocumented)
|
1764
1514
|
Canceled = "CANCELED",
|
1765
|
-
// (undocumented)
|
1766
1515
|
Completed = "COMPLETED",
|
1767
|
-
// (undocumented)
|
1768
1516
|
Error = "ERROR",
|
1769
|
-
// (undocumented)
|
1770
1517
|
Failed = "FAILED",
|
1771
|
-
// (undocumented)
|
1772
1518
|
FullLoad = "FULL_LOAD"
|
1773
1519
|
}
|
1774
1520
|
|
1775
1521
|
// @public
|
1776
1522
|
export enum KnownTaskState {
|
1777
|
-
// (undocumented)
|
1778
1523
|
Canceled = "Canceled",
|
1779
|
-
// (undocumented)
|
1780
1524
|
Failed = "Failed",
|
1781
|
-
// (undocumented)
|
1782
1525
|
FailedInputValidation = "FailedInputValidation",
|
1783
|
-
// (undocumented)
|
1784
1526
|
Faulted = "Faulted",
|
1785
|
-
// (undocumented)
|
1786
1527
|
Queued = "Queued",
|
1787
|
-
// (undocumented)
|
1788
1528
|
Running = "Running",
|
1789
|
-
// (undocumented)
|
1790
1529
|
Succeeded = "Succeeded",
|
1791
|
-
// (undocumented)
|
1792
1530
|
Unknown = "Unknown"
|
1793
1531
|
}
|
1794
1532
|
|
1795
1533
|
// @public
|
1796
1534
|
export enum KnownTaskType {
|
1797
|
-
// (undocumented)
|
1798
1535
|
ConnectMongoDb = "Connect.MongoDb",
|
1799
|
-
// (undocumented)
|
1800
1536
|
ConnectToSourceMySql = "ConnectToSource.MySql",
|
1801
|
-
// (undocumented)
|
1802
1537
|
ConnectToSourceOracleSync = "ConnectToSource.Oracle.Sync",
|
1803
|
-
// (undocumented)
|
1804
1538
|
ConnectToSourcePostgreSqlSync = "ConnectToSource.PostgreSql.Sync",
|
1805
|
-
// (undocumented)
|
1806
1539
|
ConnectToSourceSqlServer = "ConnectToSource.SqlServer",
|
1807
|
-
// (undocumented)
|
1808
1540
|
ConnectToSourceSqlServerSync = "ConnectToSource.SqlServer.Sync",
|
1809
|
-
// (undocumented)
|
1810
1541
|
ConnectToTargetAzureDbForMySql = "ConnectToTarget.AzureDbForMySql",
|
1811
|
-
// (undocumented)
|
1812
1542
|
ConnectToTargetAzureDbForPostgreSqlSync = "ConnectToTarget.AzureDbForPostgreSql.Sync",
|
1813
|
-
// (undocumented)
|
1814
1543
|
ConnectToTargetAzureSqlDbMI = "ConnectToTarget.AzureSqlDbMI",
|
1815
|
-
// (undocumented)
|
1816
1544
|
ConnectToTargetAzureSqlDbMISyncLRS = "ConnectToTarget.AzureSqlDbMI.Sync.LRS",
|
1817
|
-
// (undocumented)
|
1818
1545
|
ConnectToTargetOracleAzureDbForPostgreSqlSync = "ConnectToTarget.Oracle.AzureDbForPostgreSql.Sync",
|
1819
|
-
// (undocumented)
|
1820
1546
|
ConnectToTargetSqlDb = "ConnectToTarget.SqlDb",
|
1821
|
-
// (undocumented)
|
1822
1547
|
ConnectToTargetSqlDbSync = "ConnectToTarget.SqlDb.Sync",
|
1823
|
-
// (undocumented)
|
1824
1548
|
GetTDECertificatesSql = "GetTDECertificates.Sql",
|
1825
|
-
// (undocumented)
|
1826
1549
|
GetUserTablesAzureSqlDbSync = "GetUserTables.AzureSqlDb.Sync",
|
1827
|
-
// (undocumented)
|
1828
1550
|
GetUserTablesMySql = "GetUserTablesMySql",
|
1829
|
-
// (undocumented)
|
1830
1551
|
GetUserTablesOracle = "GetUserTablesOracle",
|
1831
|
-
// (undocumented)
|
1832
1552
|
GetUserTablesPostgreSql = "GetUserTablesPostgreSql",
|
1833
|
-
// (undocumented)
|
1834
1553
|
GetUserTablesSql = "GetUserTables.Sql",
|
1835
|
-
// (undocumented)
|
1836
1554
|
MigrateMongoDb = "Migrate.MongoDb",
|
1837
|
-
// (undocumented)
|
1838
1555
|
MigrateMySqlAzureDbForMySql = "Migrate.MySql.AzureDbForMySql",
|
1839
|
-
// (undocumented)
|
1840
1556
|
MigrateMySqlAzureDbForMySqlSync = "Migrate.MySql.AzureDbForMySql.Sync",
|
1841
|
-
// (undocumented)
|
1842
1557
|
MigrateOracleAzureDbForPostgreSqlSync = "Migrate.Oracle.AzureDbForPostgreSql.Sync",
|
1843
|
-
// (undocumented)
|
1844
1558
|
MigratePostgreSqlAzureDbForPostgreSqlSyncV2 = "Migrate.PostgreSql.AzureDbForPostgreSql.SyncV2",
|
1845
|
-
// (undocumented)
|
1846
1559
|
MigrateSchemaSqlServerSqlDb = "MigrateSchemaSqlServerSqlDb",
|
1847
|
-
// (undocumented)
|
1848
1560
|
MigrateSqlServerAzureSqlDbMI = "Migrate.SqlServer.AzureSqlDbMI",
|
1849
|
-
// (undocumented)
|
1850
1561
|
MigrateSqlServerAzureSqlDbMISyncLRS = "Migrate.SqlServer.AzureSqlDbMI.Sync.LRS",
|
1851
|
-
// (undocumented)
|
1852
1562
|
MigrateSqlServerAzureSqlDbSync = "Migrate.SqlServer.AzureSqlDb.Sync",
|
1853
|
-
// (undocumented)
|
1854
1563
|
MigrateSqlServerSqlDb = "Migrate.SqlServer.SqlDb",
|
1855
|
-
// (undocumented)
|
1856
1564
|
MigrateSsis = "Migrate.Ssis",
|
1857
|
-
// (undocumented)
|
1858
1565
|
ServiceCheckOCI = "Service.Check.OCI",
|
1859
|
-
// (undocumented)
|
1860
1566
|
ServiceInstallOCI = "Service.Install.OCI",
|
1861
|
-
// (undocumented)
|
1862
1567
|
ServiceUploadOCI = "Service.Upload.OCI",
|
1863
|
-
// (undocumented)
|
1864
1568
|
ValidateMigrationInputSqlServerAzureSqlDbMI = "ValidateMigrationInput.SqlServer.AzureSqlDbMI",
|
1865
|
-
// (undocumented)
|
1866
1569
|
ValidateMigrationInputSqlServerAzureSqlDbMISyncLRS = "ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS",
|
1867
|
-
// (undocumented)
|
1868
1570
|
ValidateMigrationInputSqlServerSqlDbSync = "ValidateMigrationInput.SqlServer.SqlDb.Sync",
|
1869
|
-
// (undocumented)
|
1870
1571
|
ValidateMongoDb = "Validate.MongoDb",
|
1871
|
-
// (undocumented)
|
1872
1572
|
ValidateOracleAzureDbPostgreSqlSync = "Validate.Oracle.AzureDbPostgreSql.Sync"
|
1873
1573
|
}
|
1874
1574
|
|
1875
1575
|
// @public
|
1876
1576
|
export enum KnownUpdateActionType {
|
1877
|
-
// (undocumented)
|
1878
1577
|
AddedOnTarget = "AddedOnTarget",
|
1879
|
-
// (undocumented)
|
1880
1578
|
ChangedOnTarget = "ChangedOnTarget",
|
1881
|
-
// (undocumented)
|
1882
1579
|
DeletedOnTarget = "DeletedOnTarget"
|
1883
1580
|
}
|
1884
1581
|
|
1885
1582
|
// @public
|
1886
1583
|
export enum KnownValidationStatus {
|
1887
|
-
// (undocumented)
|
1888
1584
|
Completed = "Completed",
|
1889
|
-
// (undocumented)
|
1890
1585
|
CompletedWithIssues = "CompletedWithIssues",
|
1891
|
-
// (undocumented)
|
1892
1586
|
Default = "Default",
|
1893
|
-
// (undocumented)
|
1894
1587
|
Failed = "Failed",
|
1895
|
-
// (undocumented)
|
1896
1588
|
Initialized = "Initialized",
|
1897
|
-
// (undocumented)
|
1898
1589
|
InProgress = "InProgress",
|
1899
|
-
// (undocumented)
|
1900
1590
|
NotStarted = "NotStarted",
|
1901
|
-
// (undocumented)
|
1902
1591
|
Stopped = "Stopped"
|
1903
1592
|
}
|
1904
1593
|
|
@@ -1919,18 +1608,18 @@ export interface MigrateMISyncCompleteCommandOutput {
|
|
1919
1608
|
}
|
1920
1609
|
|
1921
1610
|
// @public
|
1922
|
-
export
|
1611
|
+
export interface MigrateMISyncCompleteCommandProperties extends CommandProperties {
|
1923
1612
|
commandType: "Migrate.SqlServer.AzureDbSqlMi.Complete";
|
1924
1613
|
input?: MigrateMISyncCompleteCommandInput;
|
1925
1614
|
readonly output?: MigrateMISyncCompleteCommandOutput;
|
1926
|
-
}
|
1615
|
+
}
|
1927
1616
|
|
1928
1617
|
// @public
|
1929
|
-
export
|
1930
|
-
taskType: "Migrate.MongoDb";
|
1618
|
+
export interface MigrateMongoDbTaskProperties extends ProjectTaskProperties {
|
1931
1619
|
input?: MongoDbMigrationSettings;
|
1932
1620
|
readonly output?: MongoDbProgressUnion[];
|
1933
|
-
|
1621
|
+
taskType: "Migrate.MongoDb";
|
1622
|
+
}
|
1934
1623
|
|
1935
1624
|
// @public
|
1936
1625
|
export interface MigrateMySqlAzureDbForMySqlOfflineDatabaseInput {
|
@@ -1960,76 +1649,76 @@ export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
|
1960
1649
|
}
|
1961
1650
|
|
1962
1651
|
// @public (undocumented)
|
1963
|
-
export
|
1964
|
-
resultType: "DatabaseLevelOutput";
|
1652
|
+
export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
1965
1653
|
readonly databaseName?: string;
|
1966
|
-
readonly startedOn?: Date;
|
1967
1654
|
readonly endedOn?: Date;
|
1968
|
-
readonly state?: MigrationState;
|
1969
|
-
readonly stage?: DatabaseMigrationStage;
|
1970
|
-
readonly statusMessage?: string;
|
1971
|
-
readonly message?: string;
|
1972
|
-
readonly numberOfObjects?: number;
|
1973
|
-
readonly numberOfObjectsCompleted?: number;
|
1974
1655
|
readonly errorCount?: number;
|
1975
1656
|
readonly errorPrefix?: string;
|
1976
|
-
readonly resultPrefix?: string;
|
1977
1657
|
readonly exceptionsAndWarnings?: ReportableException[];
|
1978
1658
|
readonly lastStorageUpdate?: Date;
|
1659
|
+
readonly message?: string;
|
1660
|
+
readonly numberOfObjects?: number;
|
1661
|
+
readonly numberOfObjectsCompleted?: number;
|
1979
1662
|
readonly objectSummary?: string;
|
1980
|
-
|
1663
|
+
readonly resultPrefix?: string;
|
1664
|
+
resultType: "DatabaseLevelOutput";
|
1665
|
+
readonly stage?: DatabaseMigrationStage;
|
1666
|
+
readonly startedOn?: Date;
|
1667
|
+
readonly state?: MigrationState;
|
1668
|
+
readonly statusMessage?: string;
|
1669
|
+
}
|
1981
1670
|
|
1982
1671
|
// @public (undocumented)
|
1983
|
-
export
|
1984
|
-
resultType: "ErrorOutput";
|
1672
|
+
export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputError extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
1985
1673
|
readonly error?: ReportableException;
|
1986
|
-
|
1674
|
+
resultType: "ErrorOutput";
|
1675
|
+
}
|
1987
1676
|
|
1988
1677
|
// @public (undocumented)
|
1989
|
-
export
|
1990
|
-
resultType: "MigrationLevelOutput";
|
1991
|
-
readonly startedOn?: Date;
|
1992
|
-
readonly endedOn?: Date;
|
1993
|
-
readonly durationInSeconds?: number;
|
1994
|
-
readonly status?: MigrationStatus;
|
1995
|
-
readonly statusMessage?: string;
|
1996
|
-
readonly message?: string;
|
1678
|
+
export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
1997
1679
|
databases?: string;
|
1998
1680
|
readonly databaseSummary?: string;
|
1681
|
+
readonly durationInSeconds?: number;
|
1682
|
+
readonly endedOn?: Date;
|
1683
|
+
readonly exceptionsAndWarnings?: ReportableException[];
|
1684
|
+
readonly lastStorageUpdate?: Date;
|
1685
|
+
readonly message?: string;
|
1999
1686
|
migrationReportResult?: MigrationReportResult;
|
2000
|
-
|
1687
|
+
resultType: "MigrationLevelOutput";
|
2001
1688
|
readonly sourceServerBrandVersion?: string;
|
2002
|
-
readonly
|
1689
|
+
readonly sourceServerVersion?: string;
|
1690
|
+
readonly startedOn?: Date;
|
1691
|
+
readonly status?: MigrationStatus;
|
1692
|
+
readonly statusMessage?: string;
|
2003
1693
|
readonly targetServerBrandVersion?: string;
|
2004
|
-
readonly
|
2005
|
-
|
2006
|
-
};
|
1694
|
+
readonly targetServerVersion?: string;
|
1695
|
+
}
|
2007
1696
|
|
2008
1697
|
// @public (undocumented)
|
2009
|
-
export
|
2010
|
-
|
1698
|
+
export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
1699
|
+
readonly endedOn?: Date;
|
1700
|
+
readonly errorPrefix?: string;
|
1701
|
+
readonly itemsCompletedCount?: number;
|
1702
|
+
readonly itemsCount?: number;
|
1703
|
+
readonly lastStorageUpdate?: Date;
|
2011
1704
|
readonly objectName?: string;
|
1705
|
+
readonly resultPrefix?: string;
|
1706
|
+
resultType: "TableLevelOutput";
|
2012
1707
|
readonly startedOn?: Date;
|
2013
|
-
readonly endedOn?: Date;
|
2014
1708
|
readonly state?: MigrationState;
|
2015
1709
|
readonly statusMessage?: string;
|
2016
|
-
|
2017
|
-
readonly itemsCompletedCount?: number;
|
2018
|
-
readonly errorPrefix?: string;
|
2019
|
-
readonly resultPrefix?: string;
|
2020
|
-
readonly lastStorageUpdate?: Date;
|
2021
|
-
};
|
1710
|
+
}
|
2022
1711
|
|
2023
1712
|
// @public (undocumented)
|
2024
1713
|
export type MigrateMySqlAzureDbForMySqlOfflineTaskOutputUnion = MigrateMySqlAzureDbForMySqlOfflineTaskOutput | MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel | MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel | MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel | MigrateMySqlAzureDbForMySqlOfflineTaskOutputError;
|
2025
1714
|
|
2026
1715
|
// @public
|
2027
|
-
export
|
2028
|
-
taskType: "Migrate.MySql.AzureDbForMySql";
|
1716
|
+
export interface MigrateMySqlAzureDbForMySqlOfflineTaskProperties extends ProjectTaskProperties {
|
2029
1717
|
input?: MigrateMySqlAzureDbForMySqlOfflineTaskInput;
|
2030
1718
|
readonly output?: MigrateMySqlAzureDbForMySqlOfflineTaskOutputUnion[];
|
2031
|
-
|
2032
|
-
|
1719
|
+
taskType: "Migrate.MySql.AzureDbForMySql";
|
1720
|
+
}
|
1721
|
+
|
2033
1722
|
// @public
|
2034
1723
|
export interface MigrateMySqlAzureDbForMySqlSyncDatabaseInput {
|
2035
1724
|
migrationSetting?: {
|
@@ -2062,83 +1751,83 @@ export interface MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
|
2062
1751
|
}
|
2063
1752
|
|
2064
1753
|
// @public (undocumented)
|
2065
|
-
export
|
2066
|
-
resultType: "DatabaseLevelErrorOutput";
|
1754
|
+
export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseError extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
2067
1755
|
errorMessage?: string;
|
2068
1756
|
events?: SyncMigrationDatabaseErrorEvent[];
|
2069
|
-
|
1757
|
+
resultType: "DatabaseLevelErrorOutput";
|
1758
|
+
}
|
2070
1759
|
|
2071
1760
|
// @public (undocumented)
|
2072
|
-
export
|
2073
|
-
resultType: "DatabaseLevelOutput";
|
2074
|
-
readonly databaseName?: string;
|
2075
|
-
readonly startedOn?: Date;
|
2076
|
-
readonly endedOn?: Date;
|
2077
|
-
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
2078
|
-
readonly incomingChanges?: number;
|
1761
|
+
export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
2079
1762
|
readonly appliedChanges?: number;
|
2080
|
-
readonly cdcInsertCounter?: number;
|
2081
1763
|
readonly cdcDeleteCounter?: number;
|
1764
|
+
readonly cdcInsertCounter?: number;
|
2082
1765
|
readonly cdcUpdateCounter?: number;
|
1766
|
+
readonly databaseName?: string;
|
1767
|
+
readonly endedOn?: Date;
|
2083
1768
|
readonly fullLoadCompletedTables?: number;
|
1769
|
+
readonly fullLoadErroredTables?: number;
|
2084
1770
|
readonly fullLoadLoadingTables?: number;
|
2085
1771
|
readonly fullLoadQueuedTables?: number;
|
2086
|
-
readonly
|
1772
|
+
readonly incomingChanges?: number;
|
2087
1773
|
readonly initializationCompleted?: boolean;
|
2088
1774
|
readonly latency?: number;
|
2089
|
-
|
1775
|
+
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
1776
|
+
resultType: "DatabaseLevelOutput";
|
1777
|
+
readonly startedOn?: Date;
|
1778
|
+
}
|
2090
1779
|
|
2091
1780
|
// @public (undocumented)
|
2092
|
-
export
|
2093
|
-
resultType: "ErrorOutput";
|
1781
|
+
export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputError extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
2094
1782
|
readonly error?: ReportableException;
|
2095
|
-
|
1783
|
+
resultType: "ErrorOutput";
|
1784
|
+
}
|
2096
1785
|
|
2097
1786
|
// @public (undocumented)
|
2098
|
-
export
|
2099
|
-
resultType: "MigrationLevelOutput";
|
2100
|
-
readonly startedOn?: Date;
|
1787
|
+
export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
2101
1788
|
readonly endedOn?: Date;
|
2102
|
-
|
1789
|
+
resultType: "MigrationLevelOutput";
|
2103
1790
|
readonly sourceServer?: string;
|
2104
|
-
readonly
|
1791
|
+
readonly sourceServerVersion?: string;
|
1792
|
+
readonly startedOn?: Date;
|
2105
1793
|
readonly targetServer?: string;
|
2106
|
-
|
1794
|
+
readonly targetServerVersion?: string;
|
1795
|
+
}
|
2107
1796
|
|
2108
1797
|
// @public (undocumented)
|
2109
|
-
export
|
2110
|
-
|
2111
|
-
readonly tableName?: string;
|
2112
|
-
readonly databaseName?: string;
|
1798
|
+
export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
1799
|
+
readonly cdcDeleteCounter?: string;
|
2113
1800
|
readonly cdcInsertCounter?: string;
|
2114
1801
|
readonly cdcUpdateCounter?: string;
|
2115
|
-
readonly
|
1802
|
+
readonly databaseName?: string;
|
1803
|
+
readonly dataErrorsCounter?: number;
|
1804
|
+
readonly fullLoadEndedOn?: Date;
|
2116
1805
|
readonly fullLoadEstFinishTime?: Date;
|
2117
1806
|
readonly fullLoadStartedOn?: Date;
|
2118
|
-
readonly fullLoadEndedOn?: Date;
|
2119
1807
|
readonly fullLoadTotalRows?: number;
|
1808
|
+
readonly lastModifiedTime?: Date;
|
1809
|
+
resultType: "TableLevelOutput";
|
2120
1810
|
readonly state?: SyncTableMigrationState;
|
1811
|
+
readonly tableName?: string;
|
2121
1812
|
readonly totalChangesApplied?: number;
|
2122
|
-
|
2123
|
-
readonly lastModifiedTime?: Date;
|
2124
|
-
};
|
1813
|
+
}
|
2125
1814
|
|
2126
1815
|
// @public (undocumented)
|
2127
1816
|
export type MigrateMySqlAzureDbForMySqlSyncTaskOutputUnion = MigrateMySqlAzureDbForMySqlSyncTaskOutput | MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel | MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel | MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel | MigrateMySqlAzureDbForMySqlSyncTaskOutputError | MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseError;
|
2128
1817
|
|
2129
1818
|
// @public
|
2130
|
-
export
|
2131
|
-
taskType: "Migrate.MySql.AzureDbForMySql.Sync";
|
1819
|
+
export interface MigrateMySqlAzureDbForMySqlSyncTaskProperties extends ProjectTaskProperties {
|
2132
1820
|
input?: MigrateMySqlAzureDbForMySqlSyncTaskInput;
|
2133
1821
|
readonly output?: MigrateMySqlAzureDbForMySqlSyncTaskOutputUnion[];
|
2134
|
-
|
1822
|
+
taskType: "Migrate.MySql.AzureDbForMySql.Sync";
|
1823
|
+
}
|
2135
1824
|
|
2136
1825
|
// @public
|
2137
|
-
export
|
2138
|
-
taskType: "Migrate.Oracle.AzureDbForPostgreSql.Sync";
|
1826
|
+
export interface MigrateOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
2139
1827
|
input?: MigrateOracleAzureDbPostgreSqlSyncTaskInput;
|
2140
1828
|
readonly output?: MigrateOracleAzureDbPostgreSqlSyncTaskOutputUnion[];
|
2141
|
-
|
1829
|
+
taskType: "Migrate.Oracle.AzureDbForPostgreSql.Sync";
|
1830
|
+
}
|
2142
1831
|
|
2143
1832
|
// @public
|
2144
1833
|
export interface MigrateOracleAzureDbPostgreSqlSyncDatabaseInput {
|
@@ -2174,66 +1863,66 @@ export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
|
2174
1863
|
}
|
2175
1864
|
|
2176
1865
|
// @public (undocumented)
|
2177
|
-
export
|
2178
|
-
resultType: "DatabaseLevelErrorOutput";
|
1866
|
+
export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseError extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
2179
1867
|
errorMessage?: string;
|
2180
1868
|
events?: SyncMigrationDatabaseErrorEvent[];
|
2181
|
-
|
1869
|
+
resultType: "DatabaseLevelErrorOutput";
|
1870
|
+
}
|
2182
1871
|
|
2183
1872
|
// @public (undocumented)
|
2184
|
-
export
|
2185
|
-
resultType: "DatabaseLevelOutput";
|
2186
|
-
readonly databaseName?: string;
|
2187
|
-
readonly startedOn?: Date;
|
2188
|
-
readonly endedOn?: Date;
|
2189
|
-
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
2190
|
-
readonly incomingChanges?: number;
|
1873
|
+
export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
2191
1874
|
readonly appliedChanges?: number;
|
2192
|
-
readonly cdcInsertCounter?: number;
|
2193
1875
|
readonly cdcDeleteCounter?: number;
|
1876
|
+
readonly cdcInsertCounter?: number;
|
2194
1877
|
readonly cdcUpdateCounter?: number;
|
1878
|
+
readonly databaseName?: string;
|
1879
|
+
readonly endedOn?: Date;
|
2195
1880
|
readonly fullLoadCompletedTables?: number;
|
1881
|
+
readonly fullLoadErroredTables?: number;
|
2196
1882
|
readonly fullLoadLoadingTables?: number;
|
2197
1883
|
readonly fullLoadQueuedTables?: number;
|
2198
|
-
readonly
|
1884
|
+
readonly incomingChanges?: number;
|
2199
1885
|
readonly initializationCompleted?: boolean;
|
2200
1886
|
readonly latency?: number;
|
2201
|
-
|
1887
|
+
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
1888
|
+
resultType: "DatabaseLevelOutput";
|
1889
|
+
readonly startedOn?: Date;
|
1890
|
+
}
|
2202
1891
|
|
2203
1892
|
// @public (undocumented)
|
2204
|
-
export
|
2205
|
-
resultType: "ErrorOutput";
|
1893
|
+
export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputError extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
2206
1894
|
readonly error?: ReportableException;
|
2207
|
-
|
1895
|
+
resultType: "ErrorOutput";
|
1896
|
+
}
|
2208
1897
|
|
2209
1898
|
// @public (undocumented)
|
2210
|
-
export
|
2211
|
-
resultType: "MigrationLevelOutput";
|
2212
|
-
readonly startedOn?: Date;
|
1899
|
+
export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
2213
1900
|
readonly endedOn?: Date;
|
2214
|
-
|
1901
|
+
resultType: "MigrationLevelOutput";
|
2215
1902
|
readonly sourceServer?: string;
|
2216
|
-
readonly
|
1903
|
+
readonly sourceServerVersion?: string;
|
1904
|
+
readonly startedOn?: Date;
|
2217
1905
|
readonly targetServer?: string;
|
2218
|
-
|
1906
|
+
readonly targetServerVersion?: string;
|
1907
|
+
}
|
2219
1908
|
|
2220
1909
|
// @public (undocumented)
|
2221
|
-
export
|
2222
|
-
|
2223
|
-
readonly tableName?: string;
|
2224
|
-
readonly databaseName?: string;
|
1910
|
+
export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
1911
|
+
readonly cdcDeleteCounter?: number;
|
2225
1912
|
readonly cdcInsertCounter?: number;
|
2226
1913
|
readonly cdcUpdateCounter?: number;
|
2227
|
-
readonly
|
1914
|
+
readonly databaseName?: string;
|
1915
|
+
readonly dataErrorsCounter?: number;
|
1916
|
+
readonly fullLoadEndedOn?: Date;
|
2228
1917
|
readonly fullLoadEstFinishTime?: Date;
|
2229
1918
|
readonly fullLoadStartedOn?: Date;
|
2230
|
-
readonly fullLoadEndedOn?: Date;
|
2231
1919
|
readonly fullLoadTotalRows?: number;
|
1920
|
+
readonly lastModifiedTime?: Date;
|
1921
|
+
resultType: "TableLevelOutput";
|
2232
1922
|
readonly state?: SyncTableMigrationState;
|
1923
|
+
readonly tableName?: string;
|
2233
1924
|
readonly totalChangesApplied?: number;
|
2234
|
-
|
2235
|
-
readonly lastModifiedTime?: Date;
|
2236
|
-
};
|
1925
|
+
}
|
2237
1926
|
|
2238
1927
|
// @public (undocumented)
|
2239
1928
|
export type MigrateOracleAzureDbPostgreSqlSyncTaskOutputUnion = MigrateOracleAzureDbPostgreSqlSyncTaskOutput | MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel | MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel | MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel | MigrateOracleAzureDbPostgreSqlSyncTaskOutputError | MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseError;
|
@@ -2274,83 +1963,83 @@ export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
|
2274
1963
|
}
|
2275
1964
|
|
2276
1965
|
// @public (undocumented)
|
2277
|
-
export
|
2278
|
-
resultType: "DatabaseLevelErrorOutput";
|
1966
|
+
export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseError extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
2279
1967
|
errorMessage?: string;
|
2280
1968
|
events?: SyncMigrationDatabaseErrorEvent[];
|
2281
|
-
|
1969
|
+
resultType: "DatabaseLevelErrorOutput";
|
1970
|
+
}
|
2282
1971
|
|
2283
1972
|
// @public (undocumented)
|
2284
|
-
export
|
2285
|
-
resultType: "DatabaseLevelOutput";
|
2286
|
-
readonly databaseName?: string;
|
2287
|
-
readonly startedOn?: Date;
|
2288
|
-
readonly endedOn?: Date;
|
2289
|
-
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
2290
|
-
readonly incomingChanges?: number;
|
1973
|
+
export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
2291
1974
|
readonly appliedChanges?: number;
|
2292
|
-
readonly cdcInsertCounter?: number;
|
2293
1975
|
readonly cdcDeleteCounter?: number;
|
1976
|
+
readonly cdcInsertCounter?: number;
|
2294
1977
|
readonly cdcUpdateCounter?: number;
|
1978
|
+
readonly databaseName?: string;
|
1979
|
+
readonly endedOn?: Date;
|
2295
1980
|
readonly fullLoadCompletedTables?: number;
|
1981
|
+
readonly fullLoadErroredTables?: number;
|
2296
1982
|
readonly fullLoadLoadingTables?: number;
|
2297
1983
|
readonly fullLoadQueuedTables?: number;
|
2298
|
-
readonly
|
1984
|
+
readonly incomingChanges?: number;
|
2299
1985
|
readonly initializationCompleted?: boolean;
|
2300
1986
|
readonly latency?: number;
|
2301
|
-
|
1987
|
+
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
1988
|
+
resultType: "DatabaseLevelOutput";
|
1989
|
+
readonly startedOn?: Date;
|
1990
|
+
}
|
2302
1991
|
|
2303
1992
|
// @public (undocumented)
|
2304
|
-
export
|
2305
|
-
resultType: "ErrorOutput";
|
1993
|
+
export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
2306
1994
|
readonly error?: ReportableException;
|
2307
1995
|
events?: SyncMigrationDatabaseErrorEvent[];
|
2308
|
-
|
1996
|
+
resultType: "ErrorOutput";
|
1997
|
+
}
|
2309
1998
|
|
2310
1999
|
// @public (undocumented)
|
2311
|
-
export
|
2312
|
-
|
2313
|
-
readonly startedOn?: Date;
|
2000
|
+
export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
2001
|
+
databaseCount?: number;
|
2314
2002
|
readonly endedOn?: Date;
|
2315
|
-
|
2003
|
+
resultType: "MigrationLevelOutput";
|
2316
2004
|
readonly sourceServer?: string;
|
2317
|
-
readonly targetServerVersion?: string;
|
2318
|
-
readonly targetServer?: string;
|
2319
2005
|
readonly sourceServerType?: ScenarioSource;
|
2320
|
-
readonly
|
2006
|
+
readonly sourceServerVersion?: string;
|
2007
|
+
readonly startedOn?: Date;
|
2321
2008
|
readonly state?: ReplicateMigrationState;
|
2322
|
-
|
2323
|
-
|
2009
|
+
readonly targetServer?: string;
|
2010
|
+
readonly targetServerType?: ScenarioTarget;
|
2011
|
+
readonly targetServerVersion?: string;
|
2012
|
+
}
|
2324
2013
|
|
2325
2014
|
// @public (undocumented)
|
2326
|
-
export
|
2327
|
-
|
2328
|
-
readonly tableName?: string;
|
2329
|
-
readonly databaseName?: string;
|
2015
|
+
export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
2016
|
+
readonly cdcDeleteCounter?: number;
|
2330
2017
|
readonly cdcInsertCounter?: number;
|
2331
2018
|
readonly cdcUpdateCounter?: number;
|
2332
|
-
readonly
|
2019
|
+
readonly databaseName?: string;
|
2020
|
+
readonly dataErrorsCounter?: number;
|
2021
|
+
readonly fullLoadEndedOn?: Date;
|
2333
2022
|
readonly fullLoadEstFinishTime?: Date;
|
2334
2023
|
readonly fullLoadStartedOn?: Date;
|
2335
|
-
readonly fullLoadEndedOn?: Date;
|
2336
2024
|
readonly fullLoadTotalRows?: number;
|
2025
|
+
readonly lastModifiedTime?: Date;
|
2026
|
+
resultType: "TableLevelOutput";
|
2337
2027
|
readonly state?: SyncTableMigrationState;
|
2028
|
+
readonly tableName?: string;
|
2338
2029
|
readonly totalChangesApplied?: number;
|
2339
|
-
|
2340
|
-
readonly lastModifiedTime?: Date;
|
2341
|
-
};
|
2030
|
+
}
|
2342
2031
|
|
2343
2032
|
// @public (undocumented)
|
2344
2033
|
export type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputUnion = MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevel | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevel | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseError;
|
2345
2034
|
|
2346
2035
|
// @public
|
2347
|
-
export
|
2348
|
-
|
2036
|
+
export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
2037
|
+
createdOn?: string;
|
2349
2038
|
input?: MigratePostgreSqlAzureDbForPostgreSqlSyncTaskInput;
|
2350
2039
|
readonly output?: MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputUnion[];
|
2351
2040
|
taskId?: string;
|
2352
|
-
|
2353
|
-
}
|
2041
|
+
taskType: "Migrate.PostgreSql.AzureDbForPostgreSql.SyncV2";
|
2042
|
+
}
|
2354
2043
|
|
2355
2044
|
// @public
|
2356
2045
|
export interface MigrateSchemaSqlServerSqlDbDatabaseInput {
|
@@ -2361,11 +2050,11 @@ export interface MigrateSchemaSqlServerSqlDbDatabaseInput {
|
|
2361
2050
|
}
|
2362
2051
|
|
2363
2052
|
// @public
|
2364
|
-
export
|
2365
|
-
selectedDatabases: MigrateSchemaSqlServerSqlDbDatabaseInput[];
|
2053
|
+
export interface MigrateSchemaSqlServerSqlDbTaskInput extends SqlMigrationTaskInput {
|
2366
2054
|
encryptedKeyForSecureFields?: string;
|
2055
|
+
selectedDatabases: MigrateSchemaSqlServerSqlDbDatabaseInput[];
|
2367
2056
|
startedOn?: string;
|
2368
|
-
}
|
2057
|
+
}
|
2369
2058
|
|
2370
2059
|
// @public
|
2371
2060
|
export interface MigrateSchemaSqlServerSqlDbTaskOutput {
|
@@ -2374,56 +2063,56 @@ export interface MigrateSchemaSqlServerSqlDbTaskOutput {
|
|
2374
2063
|
}
|
2375
2064
|
|
2376
2065
|
// @public (undocumented)
|
2377
|
-
export
|
2378
|
-
|
2066
|
+
export interface MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
2067
|
+
readonly databaseErrorResultPrefix?: string;
|
2379
2068
|
readonly databaseName?: string;
|
2380
|
-
readonly state?: MigrationState;
|
2381
|
-
readonly stage?: SchemaMigrationStage;
|
2382
|
-
readonly startedOn?: Date;
|
2383
2069
|
readonly endedOn?: Date;
|
2384
|
-
readonly databaseErrorResultPrefix?: string;
|
2385
|
-
readonly schemaErrorResultPrefix?: string;
|
2386
|
-
readonly numberOfSuccessfulOperations?: number;
|
2387
|
-
readonly numberOfFailedOperations?: number;
|
2388
2070
|
readonly fileId?: string;
|
2389
|
-
|
2071
|
+
readonly numberOfFailedOperations?: number;
|
2072
|
+
readonly numberOfSuccessfulOperations?: number;
|
2073
|
+
resultType: "DatabaseLevelOutput";
|
2074
|
+
readonly schemaErrorResultPrefix?: string;
|
2075
|
+
readonly stage?: SchemaMigrationStage;
|
2076
|
+
readonly startedOn?: Date;
|
2077
|
+
readonly state?: MigrationState;
|
2078
|
+
}
|
2390
2079
|
|
2391
2080
|
// @public (undocumented)
|
2392
|
-
export
|
2393
|
-
resultType: "SchemaErrorOutput";
|
2081
|
+
export interface MigrateSchemaSqlServerSqlDbTaskOutputError extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
2394
2082
|
readonly commandText?: string;
|
2395
2083
|
readonly errorText?: string;
|
2396
|
-
|
2084
|
+
resultType: "SchemaErrorOutput";
|
2085
|
+
}
|
2397
2086
|
|
2398
2087
|
// @public (undocumented)
|
2399
|
-
export
|
2400
|
-
resultType: "MigrationLevelOutput";
|
2401
|
-
readonly state?: MigrationState;
|
2402
|
-
readonly startedOn?: Date;
|
2088
|
+
export interface MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
2403
2089
|
readonly endedOn?: Date;
|
2404
|
-
|
2090
|
+
resultType: "MigrationLevelOutput";
|
2405
2091
|
readonly sourceServerBrandVersion?: string;
|
2406
|
-
readonly
|
2092
|
+
readonly sourceServerVersion?: string;
|
2093
|
+
readonly startedOn?: Date;
|
2094
|
+
readonly state?: MigrationState;
|
2407
2095
|
readonly targetServerBrandVersion?: string;
|
2408
|
-
|
2096
|
+
readonly targetServerVersion?: string;
|
2097
|
+
}
|
2409
2098
|
|
2410
2099
|
// @public (undocumented)
|
2411
2100
|
export type MigrateSchemaSqlServerSqlDbTaskOutputUnion = MigrateSchemaSqlServerSqlDbTaskOutput | MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel | MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel | MigrateSchemaSqlServerSqlDbTaskOutputError | MigrateSchemaSqlTaskOutputError;
|
2412
2101
|
|
2413
2102
|
// @public
|
2414
|
-
export
|
2415
|
-
|
2103
|
+
export interface MigrateSchemaSqlServerSqlDbTaskProperties extends ProjectTaskProperties {
|
2104
|
+
createdOn?: string;
|
2416
2105
|
input?: MigrateSchemaSqlServerSqlDbTaskInput;
|
2417
2106
|
readonly output?: MigrateSchemaSqlServerSqlDbTaskOutputUnion[];
|
2418
|
-
createdOn?: string;
|
2419
2107
|
taskId?: string;
|
2420
|
-
|
2108
|
+
taskType: "MigrateSchemaSqlServerSqlDb";
|
2109
|
+
}
|
2421
2110
|
|
2422
2111
|
// @public (undocumented)
|
2423
|
-
export
|
2424
|
-
resultType: "ErrorOutput";
|
2112
|
+
export interface MigrateSchemaSqlTaskOutputError extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
2425
2113
|
readonly error?: ReportableException;
|
2426
|
-
|
2114
|
+
resultType: "ErrorOutput";
|
2115
|
+
}
|
2427
2116
|
|
2428
2117
|
// @public
|
2429
2118
|
export interface MigrateSqlServerDatabaseInput {
|
@@ -2466,10 +2155,10 @@ export interface MigrateSqlServerSqlDbSyncDatabaseInput {
|
|
2466
2155
|
}
|
2467
2156
|
|
2468
2157
|
// @public
|
2469
|
-
export
|
2158
|
+
export interface MigrateSqlServerSqlDbSyncTaskInput extends SqlMigrationTaskInput {
|
2470
2159
|
selectedDatabases: MigrateSqlServerSqlDbSyncDatabaseInput[];
|
2471
2160
|
validationOptions?: MigrationValidationOptions;
|
2472
|
-
}
|
2161
|
+
}
|
2473
2162
|
|
2474
2163
|
// @public
|
2475
2164
|
export interface MigrateSqlServerSqlDbSyncTaskOutput {
|
@@ -2478,85 +2167,85 @@ export interface MigrateSqlServerSqlDbSyncTaskOutput {
|
|
2478
2167
|
}
|
2479
2168
|
|
2480
2169
|
// @public (undocumented)
|
2481
|
-
export
|
2482
|
-
resultType: "DatabaseLevelErrorOutput";
|
2170
|
+
export interface MigrateSqlServerSqlDbSyncTaskOutputDatabaseError extends MigrateSqlServerSqlDbSyncTaskOutput {
|
2483
2171
|
errorMessage?: string;
|
2484
2172
|
events?: SyncMigrationDatabaseErrorEvent[];
|
2485
|
-
|
2173
|
+
resultType: "DatabaseLevelErrorOutput";
|
2174
|
+
}
|
2486
2175
|
|
2487
2176
|
// @public (undocumented)
|
2488
|
-
export
|
2489
|
-
resultType: "DatabaseLevelOutput";
|
2490
|
-
readonly databaseName?: string;
|
2491
|
-
readonly startedOn?: Date;
|
2492
|
-
readonly endedOn?: Date;
|
2493
|
-
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
2494
|
-
readonly incomingChanges?: number;
|
2177
|
+
export interface MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
|
2495
2178
|
readonly appliedChanges?: number;
|
2496
|
-
readonly cdcInsertCounter?: number;
|
2497
2179
|
readonly cdcDeleteCounter?: number;
|
2180
|
+
readonly cdcInsertCounter?: number;
|
2498
2181
|
readonly cdcUpdateCounter?: number;
|
2182
|
+
readonly databaseName?: string;
|
2183
|
+
readonly endedOn?: Date;
|
2499
2184
|
readonly fullLoadCompletedTables?: number;
|
2185
|
+
readonly fullLoadErroredTables?: number;
|
2500
2186
|
readonly fullLoadLoadingTables?: number;
|
2501
2187
|
readonly fullLoadQueuedTables?: number;
|
2502
|
-
readonly
|
2188
|
+
readonly incomingChanges?: number;
|
2503
2189
|
readonly initializationCompleted?: boolean;
|
2504
2190
|
readonly latency?: number;
|
2505
|
-
|
2191
|
+
readonly migrationState?: SyncDatabaseMigrationReportingState;
|
2192
|
+
resultType: "DatabaseLevelOutput";
|
2193
|
+
readonly startedOn?: Date;
|
2194
|
+
}
|
2506
2195
|
|
2507
2196
|
// @public (undocumented)
|
2508
|
-
export
|
2509
|
-
resultType: "ErrorOutput";
|
2197
|
+
export interface MigrateSqlServerSqlDbSyncTaskOutputError extends MigrateSqlServerSqlDbSyncTaskOutput {
|
2510
2198
|
readonly error?: ReportableException;
|
2511
|
-
|
2199
|
+
resultType: "ErrorOutput";
|
2200
|
+
}
|
2512
2201
|
|
2513
2202
|
// @public (undocumented)
|
2514
|
-
export
|
2515
|
-
|
2516
|
-
readonly startedOn?: Date;
|
2203
|
+
export interface MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
|
2204
|
+
readonly databaseCount?: number;
|
2517
2205
|
readonly endedOn?: Date;
|
2518
|
-
|
2206
|
+
resultType: "MigrationLevelOutput";
|
2519
2207
|
readonly sourceServer?: string;
|
2520
|
-
readonly
|
2208
|
+
readonly sourceServerVersion?: string;
|
2209
|
+
readonly startedOn?: Date;
|
2521
2210
|
readonly targetServer?: string;
|
2522
|
-
readonly
|
2523
|
-
}
|
2211
|
+
readonly targetServerVersion?: string;
|
2212
|
+
}
|
2524
2213
|
|
2525
2214
|
// @public (undocumented)
|
2526
|
-
export
|
2527
|
-
|
2528
|
-
readonly tableName?: string;
|
2529
|
-
readonly databaseName?: string;
|
2215
|
+
export interface MigrateSqlServerSqlDbSyncTaskOutputTableLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
|
2216
|
+
readonly cdcDeleteCounter?: number;
|
2530
2217
|
readonly cdcInsertCounter?: number;
|
2531
2218
|
readonly cdcUpdateCounter?: number;
|
2532
|
-
readonly
|
2219
|
+
readonly databaseName?: string;
|
2220
|
+
readonly dataErrorsCounter?: number;
|
2221
|
+
readonly fullLoadEndedOn?: Date;
|
2533
2222
|
readonly fullLoadEstFinishTime?: Date;
|
2534
2223
|
readonly fullLoadStartedOn?: Date;
|
2535
|
-
readonly fullLoadEndedOn?: Date;
|
2536
2224
|
readonly fullLoadTotalRows?: number;
|
2225
|
+
readonly lastModifiedTime?: Date;
|
2226
|
+
resultType: "TableLevelOutput";
|
2537
2227
|
readonly state?: SyncTableMigrationState;
|
2228
|
+
readonly tableName?: string;
|
2538
2229
|
readonly totalChangesApplied?: number;
|
2539
|
-
|
2540
|
-
readonly lastModifiedTime?: Date;
|
2541
|
-
};
|
2230
|
+
}
|
2542
2231
|
|
2543
2232
|
// @public (undocumented)
|
2544
2233
|
export type MigrateSqlServerSqlDbSyncTaskOutputUnion = MigrateSqlServerSqlDbSyncTaskOutput | MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel | MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel | MigrateSqlServerSqlDbSyncTaskOutputTableLevel | MigrateSqlServerSqlDbSyncTaskOutputError | MigrateSqlServerSqlDbSyncTaskOutputDatabaseError;
|
2545
2234
|
|
2546
2235
|
// @public
|
2547
|
-
export
|
2548
|
-
taskType: "Migrate.SqlServer.AzureSqlDb.Sync";
|
2236
|
+
export interface MigrateSqlServerSqlDbSyncTaskProperties extends ProjectTaskProperties {
|
2549
2237
|
input?: MigrateSqlServerSqlDbSyncTaskInput;
|
2550
2238
|
readonly output?: MigrateSqlServerSqlDbSyncTaskOutputUnion[];
|
2551
|
-
|
2239
|
+
taskType: "Migrate.SqlServer.AzureSqlDb.Sync";
|
2240
|
+
}
|
2552
2241
|
|
2553
2242
|
// @public
|
2554
|
-
export
|
2243
|
+
export interface MigrateSqlServerSqlDbTaskInput extends SqlMigrationTaskInput {
|
2244
|
+
encryptedKeyForSecureFields?: string;
|
2555
2245
|
selectedDatabases: MigrateSqlServerSqlDbDatabaseInput[];
|
2556
|
-
validationOptions?: MigrationValidationOptions;
|
2557
2246
|
startedOn?: string;
|
2558
|
-
|
2559
|
-
}
|
2247
|
+
validationOptions?: MigrationValidationOptions;
|
2248
|
+
}
|
2560
2249
|
|
2561
2250
|
// @public
|
2562
2251
|
export interface MigrateSqlServerSqlDbTaskOutput {
|
@@ -2565,85 +2254,85 @@ export interface MigrateSqlServerSqlDbTaskOutput {
|
|
2565
2254
|
}
|
2566
2255
|
|
2567
2256
|
// @public (undocumented)
|
2568
|
-
export
|
2569
|
-
resultType: "DatabaseLevelOutput";
|
2257
|
+
export interface MigrateSqlServerSqlDbTaskOutputDatabaseLevel extends MigrateSqlServerSqlDbTaskOutput {
|
2570
2258
|
readonly databaseName?: string;
|
2571
|
-
readonly startedOn?: Date;
|
2572
2259
|
readonly endedOn?: Date;
|
2573
|
-
readonly state?: MigrationState;
|
2574
|
-
readonly stage?: DatabaseMigrationStage;
|
2575
|
-
readonly statusMessage?: string;
|
2576
|
-
readonly message?: string;
|
2577
|
-
readonly numberOfObjects?: number;
|
2578
|
-
readonly numberOfObjectsCompleted?: number;
|
2579
2260
|
readonly errorCount?: number;
|
2580
2261
|
readonly errorPrefix?: string;
|
2581
|
-
readonly resultPrefix?: string;
|
2582
2262
|
readonly exceptionsAndWarnings?: ReportableException[];
|
2263
|
+
readonly message?: string;
|
2264
|
+
readonly numberOfObjects?: number;
|
2265
|
+
readonly numberOfObjectsCompleted?: number;
|
2583
2266
|
readonly objectSummary?: string;
|
2584
|
-
|
2267
|
+
readonly resultPrefix?: string;
|
2268
|
+
resultType: "DatabaseLevelOutput";
|
2269
|
+
readonly stage?: DatabaseMigrationStage;
|
2270
|
+
readonly startedOn?: Date;
|
2271
|
+
readonly state?: MigrationState;
|
2272
|
+
readonly statusMessage?: string;
|
2273
|
+
}
|
2585
2274
|
|
2586
2275
|
// @public (undocumented)
|
2587
|
-
export
|
2276
|
+
export interface MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResult extends MigrateSqlServerSqlDbTaskOutput, MigrationValidationDatabaseLevelResult {
|
2588
2277
|
resultType: "MigrationDatabaseLevelValidationOutput";
|
2589
|
-
}
|
2278
|
+
}
|
2590
2279
|
|
2591
2280
|
// @public (undocumented)
|
2592
|
-
export
|
2593
|
-
resultType: "ErrorOutput";
|
2281
|
+
export interface MigrateSqlServerSqlDbTaskOutputError extends MigrateSqlServerSqlDbTaskOutput {
|
2594
2282
|
readonly error?: ReportableException;
|
2595
|
-
|
2283
|
+
resultType: "ErrorOutput";
|
2284
|
+
}
|
2596
2285
|
|
2597
2286
|
// @public (undocumented)
|
2598
|
-
export
|
2599
|
-
resultType: "MigrationLevelOutput";
|
2600
|
-
readonly startedOn?: Date;
|
2601
|
-
readonly endedOn?: Date;
|
2602
|
-
readonly durationInSeconds?: number;
|
2603
|
-
readonly status?: MigrationStatus;
|
2604
|
-
readonly statusMessage?: string;
|
2605
|
-
readonly message?: string;
|
2287
|
+
export interface MigrateSqlServerSqlDbTaskOutputMigrationLevel extends MigrateSqlServerSqlDbTaskOutput {
|
2606
2288
|
readonly databases?: string;
|
2607
2289
|
readonly databaseSummary?: string;
|
2608
|
-
|
2290
|
+
readonly durationInSeconds?: number;
|
2291
|
+
readonly endedOn?: Date;
|
2292
|
+
readonly exceptionsAndWarnings?: ReportableException[];
|
2293
|
+
readonly message?: string;
|
2609
2294
|
migrationReportResult?: MigrationReportResult;
|
2610
|
-
|
2295
|
+
migrationValidationResult?: MigrationValidationResult;
|
2296
|
+
resultType: "MigrationLevelOutput";
|
2611
2297
|
readonly sourceServerBrandVersion?: string;
|
2612
|
-
readonly
|
2298
|
+
readonly sourceServerVersion?: string;
|
2299
|
+
readonly startedOn?: Date;
|
2300
|
+
readonly status?: MigrationStatus;
|
2301
|
+
readonly statusMessage?: string;
|
2613
2302
|
readonly targetServerBrandVersion?: string;
|
2614
|
-
readonly
|
2615
|
-
}
|
2303
|
+
readonly targetServerVersion?: string;
|
2304
|
+
}
|
2616
2305
|
|
2617
2306
|
// @public (undocumented)
|
2618
|
-
export
|
2619
|
-
|
2307
|
+
export interface MigrateSqlServerSqlDbTaskOutputTableLevel extends MigrateSqlServerSqlDbTaskOutput {
|
2308
|
+
readonly endedOn?: Date;
|
2309
|
+
readonly errorPrefix?: string;
|
2310
|
+
readonly itemsCompletedCount?: number;
|
2311
|
+
readonly itemsCount?: number;
|
2620
2312
|
readonly objectName?: string;
|
2313
|
+
readonly resultPrefix?: string;
|
2314
|
+
resultType: "TableLevelOutput";
|
2621
2315
|
readonly startedOn?: Date;
|
2622
|
-
readonly endedOn?: Date;
|
2623
2316
|
readonly state?: MigrationState;
|
2624
2317
|
readonly statusMessage?: string;
|
2625
|
-
|
2626
|
-
readonly itemsCompletedCount?: number;
|
2627
|
-
readonly errorPrefix?: string;
|
2628
|
-
readonly resultPrefix?: string;
|
2629
|
-
};
|
2318
|
+
}
|
2630
2319
|
|
2631
2320
|
// @public (undocumented)
|
2632
2321
|
export type MigrateSqlServerSqlDbTaskOutputUnion = MigrateSqlServerSqlDbTaskOutput | MigrateSqlServerSqlDbTaskOutputMigrationLevel | MigrateSqlServerSqlDbTaskOutputDatabaseLevel | MigrateSqlServerSqlDbTaskOutputTableLevel | MigrateSqlServerSqlDbTaskOutputError | MigrateSqlServerSqlDbTaskOutputValidationResult | MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResult;
|
2633
2322
|
|
2634
2323
|
// @public (undocumented)
|
2635
|
-
export
|
2324
|
+
export interface MigrateSqlServerSqlDbTaskOutputValidationResult extends MigrateSqlServerSqlDbTaskOutput, MigrationValidationResult {
|
2636
2325
|
resultType: "MigrationValidationOutput";
|
2637
|
-
}
|
2326
|
+
}
|
2638
2327
|
|
2639
2328
|
// @public
|
2640
|
-
export
|
2641
|
-
taskType: "Migrate.SqlServer.SqlDb";
|
2329
|
+
export interface MigrateSqlServerSqlDbTaskProperties extends ProjectTaskProperties {
|
2642
2330
|
input?: MigrateSqlServerSqlDbTaskInput;
|
2331
|
+
isCloneable?: boolean;
|
2643
2332
|
readonly output?: MigrateSqlServerSqlDbTaskOutputUnion[];
|
2644
2333
|
taskId?: string;
|
2645
|
-
|
2646
|
-
}
|
2334
|
+
taskType: "Migrate.SqlServer.SqlDb";
|
2335
|
+
}
|
2647
2336
|
|
2648
2337
|
// @public
|
2649
2338
|
export interface MigrateSqlServerSqlMIDatabaseInput {
|
@@ -2655,7 +2344,8 @@ export interface MigrateSqlServerSqlMIDatabaseInput {
|
|
2655
2344
|
}
|
2656
2345
|
|
2657
2346
|
// @public
|
2658
|
-
export
|
2347
|
+
export interface MigrateSqlServerSqlMISyncTaskInput extends SqlServerSqlMISyncTaskInput {
|
2348
|
+
}
|
2659
2349
|
|
2660
2350
|
// @public
|
2661
2351
|
export interface MigrateSqlServerSqlMISyncTaskOutput {
|
@@ -2664,64 +2354,64 @@ export interface MigrateSqlServerSqlMISyncTaskOutput {
|
|
2664
2354
|
}
|
2665
2355
|
|
2666
2356
|
// @public (undocumented)
|
2667
|
-
export
|
2668
|
-
resultType: "DatabaseLevelOutput";
|
2669
|
-
readonly sourceDatabaseName?: string;
|
2670
|
-
readonly migrationState?: DatabaseMigrationState;
|
2671
|
-
readonly startedOn?: Date;
|
2672
|
-
readonly endedOn?: Date;
|
2673
|
-
readonly fullBackupSetInfo?: BackupSetInfo;
|
2674
|
-
readonly lastRestoredBackupSetInfo?: BackupSetInfo;
|
2357
|
+
export interface MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel extends MigrateSqlServerSqlMISyncTaskOutput {
|
2675
2358
|
readonly activeBackupSets?: BackupSetInfo[];
|
2676
2359
|
readonly containerName?: string;
|
2360
|
+
readonly endedOn?: Date;
|
2677
2361
|
readonly errorPrefix?: string;
|
2678
|
-
readonly isFullBackupRestored?: boolean;
|
2679
2362
|
readonly exceptionsAndWarnings?: ReportableException[];
|
2680
|
-
|
2363
|
+
readonly fullBackupSetInfo?: BackupSetInfo;
|
2364
|
+
readonly isFullBackupRestored?: boolean;
|
2365
|
+
readonly lastRestoredBackupSetInfo?: BackupSetInfo;
|
2366
|
+
readonly migrationState?: DatabaseMigrationState;
|
2367
|
+
resultType: "DatabaseLevelOutput";
|
2368
|
+
readonly sourceDatabaseName?: string;
|
2369
|
+
readonly startedOn?: Date;
|
2370
|
+
}
|
2681
2371
|
|
2682
2372
|
// @public (undocumented)
|
2683
|
-
export
|
2684
|
-
resultType: "ErrorOutput";
|
2373
|
+
export interface MigrateSqlServerSqlMISyncTaskOutputError extends MigrateSqlServerSqlMISyncTaskOutput {
|
2685
2374
|
readonly error?: ReportableException;
|
2686
|
-
|
2375
|
+
resultType: "ErrorOutput";
|
2376
|
+
}
|
2687
2377
|
|
2688
2378
|
// @public (undocumented)
|
2689
|
-
export
|
2690
|
-
resultType: "MigrationLevelOutput";
|
2379
|
+
export interface MigrateSqlServerSqlMISyncTaskOutputMigrationLevel extends MigrateSqlServerSqlMISyncTaskOutput {
|
2691
2380
|
readonly databaseCount?: number;
|
2692
|
-
readonly
|
2693
|
-
readonly startedOn?: Date;
|
2381
|
+
readonly databaseErrorCount?: number;
|
2694
2382
|
readonly endedOn?: Date;
|
2383
|
+
resultType: "MigrationLevelOutput";
|
2384
|
+
readonly sourceServerBrandVersion?: string;
|
2695
2385
|
readonly sourceServerName?: string;
|
2696
2386
|
readonly sourceServerVersion?: string;
|
2697
|
-
readonly
|
2387
|
+
readonly startedOn?: Date;
|
2388
|
+
readonly state?: MigrationState;
|
2389
|
+
readonly targetServerBrandVersion?: string;
|
2698
2390
|
readonly targetServerName?: string;
|
2699
2391
|
readonly targetServerVersion?: string;
|
2700
|
-
|
2701
|
-
readonly databaseErrorCount?: number;
|
2702
|
-
};
|
2392
|
+
}
|
2703
2393
|
|
2704
2394
|
// @public (undocumented)
|
2705
2395
|
export type MigrateSqlServerSqlMISyncTaskOutputUnion = MigrateSqlServerSqlMISyncTaskOutput | MigrateSqlServerSqlMISyncTaskOutputMigrationLevel | MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel | MigrateSqlServerSqlMISyncTaskOutputError;
|
2706
2396
|
|
2707
2397
|
// @public
|
2708
|
-
export
|
2709
|
-
taskType: "Migrate.SqlServer.AzureSqlDbMI.Sync.LRS";
|
2398
|
+
export interface MigrateSqlServerSqlMISyncTaskProperties extends ProjectTaskProperties {
|
2710
2399
|
input?: MigrateSqlServerSqlMISyncTaskInput;
|
2711
2400
|
readonly output?: MigrateSqlServerSqlMISyncTaskOutputUnion[];
|
2712
|
-
|
2401
|
+
taskType: "Migrate.SqlServer.AzureSqlDbMI.Sync.LRS";
|
2402
|
+
}
|
2713
2403
|
|
2714
2404
|
// @public
|
2715
|
-
export
|
2716
|
-
|
2717
|
-
startedOn?: string;
|
2718
|
-
selectedLogins?: string[];
|
2719
|
-
selectedAgentJobs?: string[];
|
2720
|
-
backupFileShare?: FileShare;
|
2405
|
+
export interface MigrateSqlServerSqlMITaskInput extends SqlMigrationTaskInput {
|
2406
|
+
aadDomainName?: string;
|
2721
2407
|
backupBlobShare: BlobShare;
|
2408
|
+
backupFileShare?: FileShare;
|
2722
2409
|
backupMode?: BackupMode;
|
2723
|
-
|
2724
|
-
|
2410
|
+
selectedAgentJobs?: string[];
|
2411
|
+
selectedDatabases: MigrateSqlServerSqlMIDatabaseInput[];
|
2412
|
+
selectedLogins?: string[];
|
2413
|
+
startedOn?: string;
|
2414
|
+
}
|
2725
2415
|
|
2726
2416
|
// @public
|
2727
2417
|
export interface MigrateSqlServerSqlMITaskOutput {
|
@@ -2730,83 +2420,83 @@ export interface MigrateSqlServerSqlMITaskOutput {
|
|
2730
2420
|
}
|
2731
2421
|
|
2732
2422
|
// @public (undocumented)
|
2733
|
-
export
|
2734
|
-
resultType: "AgentJobLevelOutput";
|
2735
|
-
readonly name?: string;
|
2736
|
-
readonly isEnabled?: boolean;
|
2737
|
-
readonly state?: MigrationState;
|
2738
|
-
readonly startedOn?: Date;
|
2423
|
+
export interface MigrateSqlServerSqlMITaskOutputAgentJobLevel extends MigrateSqlServerSqlMITaskOutput {
|
2739
2424
|
readonly endedOn?: Date;
|
2740
|
-
readonly message?: string;
|
2741
2425
|
readonly exceptionsAndWarnings?: ReportableException[];
|
2742
|
-
|
2426
|
+
readonly isEnabled?: boolean;
|
2427
|
+
readonly message?: string;
|
2428
|
+
readonly name?: string;
|
2429
|
+
resultType: "AgentJobLevelOutput";
|
2430
|
+
readonly startedOn?: Date;
|
2431
|
+
readonly state?: MigrationState;
|
2432
|
+
}
|
2743
2433
|
|
2744
2434
|
// @public (undocumented)
|
2745
|
-
export
|
2746
|
-
resultType: "DatabaseLevelOutput";
|
2435
|
+
export interface MigrateSqlServerSqlMITaskOutputDatabaseLevel extends MigrateSqlServerSqlMITaskOutput {
|
2747
2436
|
readonly databaseName?: string;
|
2437
|
+
readonly endedOn?: Date;
|
2438
|
+
readonly exceptionsAndWarnings?: ReportableException[];
|
2439
|
+
readonly message?: string;
|
2440
|
+
resultType: "DatabaseLevelOutput";
|
2748
2441
|
readonly sizeMB?: number;
|
2749
|
-
readonly state?: MigrationState;
|
2750
2442
|
readonly stage?: DatabaseMigrationStage;
|
2751
2443
|
readonly startedOn?: Date;
|
2752
|
-
readonly
|
2753
|
-
|
2754
|
-
readonly exceptionsAndWarnings?: ReportableException[];
|
2755
|
-
};
|
2444
|
+
readonly state?: MigrationState;
|
2445
|
+
}
|
2756
2446
|
|
2757
2447
|
// @public (undocumented)
|
2758
|
-
export
|
2759
|
-
resultType: "ErrorOutput";
|
2448
|
+
export interface MigrateSqlServerSqlMITaskOutputError extends MigrateSqlServerSqlMITaskOutput {
|
2760
2449
|
readonly error?: ReportableException;
|
2761
|
-
|
2450
|
+
resultType: "ErrorOutput";
|
2451
|
+
}
|
2762
2452
|
|
2763
2453
|
// @public (undocumented)
|
2764
|
-
export
|
2765
|
-
|
2454
|
+
export interface MigrateSqlServerSqlMITaskOutputLoginLevel extends MigrateSqlServerSqlMITaskOutput {
|
2455
|
+
readonly endedOn?: Date;
|
2456
|
+
readonly exceptionsAndWarnings?: ReportableException[];
|
2766
2457
|
readonly loginName?: string;
|
2767
|
-
readonly
|
2458
|
+
readonly message?: string;
|
2459
|
+
resultType: "LoginLevelOutput";
|
2768
2460
|
readonly stage?: LoginMigrationStage;
|
2769
2461
|
readonly startedOn?: Date;
|
2770
|
-
readonly
|
2771
|
-
|
2772
|
-
readonly exceptionsAndWarnings?: ReportableException[];
|
2773
|
-
};
|
2462
|
+
readonly state?: MigrationState;
|
2463
|
+
}
|
2774
2464
|
|
2775
2465
|
// @public (undocumented)
|
2776
|
-
export
|
2777
|
-
resultType: "MigrationLevelOutput";
|
2778
|
-
readonly startedOn?: Date;
|
2779
|
-
readonly endedOn?: Date;
|
2780
|
-
readonly status?: MigrationStatus;
|
2781
|
-
readonly state?: MigrationState;
|
2466
|
+
export interface MigrateSqlServerSqlMITaskOutputMigrationLevel extends MigrateSqlServerSqlMITaskOutput {
|
2782
2467
|
readonly agentJobs?: string;
|
2468
|
+
readonly databases?: string;
|
2469
|
+
readonly endedOn?: Date;
|
2470
|
+
readonly exceptionsAndWarnings?: ReportableException[];
|
2783
2471
|
readonly logins?: string;
|
2784
2472
|
readonly message?: string;
|
2785
|
-
readonly serverRoleResults?: string;
|
2786
2473
|
readonly orphanedUsersInfo?: OrphanedUserInfo[];
|
2787
|
-
|
2788
|
-
readonly
|
2474
|
+
resultType: "MigrationLevelOutput";
|
2475
|
+
readonly serverRoleResults?: string;
|
2789
2476
|
readonly sourceServerBrandVersion?: string;
|
2790
|
-
readonly
|
2477
|
+
readonly sourceServerVersion?: string;
|
2478
|
+
readonly startedOn?: Date;
|
2479
|
+
readonly state?: MigrationState;
|
2480
|
+
readonly status?: MigrationStatus;
|
2791
2481
|
readonly targetServerBrandVersion?: string;
|
2792
|
-
readonly
|
2793
|
-
}
|
2482
|
+
readonly targetServerVersion?: string;
|
2483
|
+
}
|
2794
2484
|
|
2795
2485
|
// @public (undocumented)
|
2796
2486
|
export type MigrateSqlServerSqlMITaskOutputUnion = MigrateSqlServerSqlMITaskOutput | MigrateSqlServerSqlMITaskOutputMigrationLevel | MigrateSqlServerSqlMITaskOutputDatabaseLevel | MigrateSqlServerSqlMITaskOutputAgentJobLevel | MigrateSqlServerSqlMITaskOutputLoginLevel | MigrateSqlServerSqlMITaskOutputError;
|
2797
2487
|
|
2798
2488
|
// @public
|
2799
|
-
export
|
2800
|
-
taskType: "Migrate.SqlServer.AzureSqlDbMI";
|
2489
|
+
export interface MigrateSqlServerSqlMITaskProperties extends ProjectTaskProperties {
|
2801
2490
|
input?: MigrateSqlServerSqlMITaskInput;
|
2802
2491
|
readonly output?: MigrateSqlServerSqlMITaskOutputUnion[];
|
2803
2492
|
taskId?: string;
|
2804
|
-
|
2493
|
+
taskType: "Migrate.SqlServer.AzureSqlDbMI";
|
2494
|
+
}
|
2805
2495
|
|
2806
2496
|
// @public
|
2807
|
-
export
|
2497
|
+
export interface MigrateSsisTaskInput extends SqlMigrationTaskInput {
|
2808
2498
|
ssisMigrationInfo: SsisMigrationInfo;
|
2809
|
-
}
|
2499
|
+
}
|
2810
2500
|
|
2811
2501
|
// @public
|
2812
2502
|
export interface MigrateSsisTaskOutput {
|
@@ -2815,42 +2505,42 @@ export interface MigrateSsisTaskOutput {
|
|
2815
2505
|
}
|
2816
2506
|
|
2817
2507
|
// @public (undocumented)
|
2818
|
-
export
|
2819
|
-
resultType: "MigrationLevelOutput";
|
2820
|
-
readonly startedOn?: Date;
|
2508
|
+
export interface MigrateSsisTaskOutputMigrationLevel extends MigrateSsisTaskOutput {
|
2821
2509
|
readonly endedOn?: Date;
|
2822
|
-
readonly
|
2510
|
+
readonly exceptionsAndWarnings?: ReportableException[];
|
2823
2511
|
readonly message?: string;
|
2824
|
-
|
2512
|
+
resultType: "MigrationLevelOutput";
|
2825
2513
|
readonly sourceServerBrandVersion?: string;
|
2826
|
-
readonly
|
2827
|
-
readonly targetServerBrandVersion?: string;
|
2828
|
-
readonly exceptionsAndWarnings?: ReportableException[];
|
2514
|
+
readonly sourceServerVersion?: string;
|
2829
2515
|
readonly stage?: SsisMigrationStage;
|
2830
|
-
|
2516
|
+
readonly startedOn?: Date;
|
2517
|
+
readonly status?: MigrationStatus;
|
2518
|
+
readonly targetServerBrandVersion?: string;
|
2519
|
+
readonly targetServerVersion?: string;
|
2520
|
+
}
|
2831
2521
|
|
2832
2522
|
// @public (undocumented)
|
2833
|
-
export
|
2834
|
-
|
2523
|
+
export interface MigrateSsisTaskOutputProjectLevel extends MigrateSsisTaskOutput {
|
2524
|
+
readonly endedOn?: Date;
|
2525
|
+
readonly exceptionsAndWarnings?: ReportableException[];
|
2835
2526
|
readonly folderName?: string;
|
2527
|
+
readonly message?: string;
|
2836
2528
|
readonly projectName?: string;
|
2837
|
-
|
2529
|
+
resultType: "SsisProjectLevelOutput";
|
2838
2530
|
readonly stage?: SsisMigrationStage;
|
2839
2531
|
readonly startedOn?: Date;
|
2840
|
-
readonly
|
2841
|
-
|
2842
|
-
readonly exceptionsAndWarnings?: ReportableException[];
|
2843
|
-
};
|
2532
|
+
readonly state?: MigrationState;
|
2533
|
+
}
|
2844
2534
|
|
2845
2535
|
// @public (undocumented)
|
2846
2536
|
export type MigrateSsisTaskOutputUnion = MigrateSsisTaskOutput | MigrateSsisTaskOutputMigrationLevel | MigrateSsisTaskOutputProjectLevel;
|
2847
2537
|
|
2848
2538
|
// @public
|
2849
|
-
export
|
2850
|
-
taskType: "Migrate.Ssis";
|
2539
|
+
export interface MigrateSsisTaskProperties extends ProjectTaskProperties {
|
2851
2540
|
input?: MigrateSsisTaskInput;
|
2852
2541
|
readonly output?: MigrateSsisTaskOutputUnion[];
|
2853
|
-
|
2542
|
+
taskType: "Migrate.Ssis";
|
2543
|
+
}
|
2854
2544
|
|
2855
2545
|
// @public
|
2856
2546
|
export interface MigrateSyncCompleteCommandInput {
|
@@ -2865,11 +2555,11 @@ export interface MigrateSyncCompleteCommandOutput {
|
|
2865
2555
|
}
|
2866
2556
|
|
2867
2557
|
// @public
|
2868
|
-
export
|
2558
|
+
export interface MigrateSyncCompleteCommandProperties extends CommandProperties {
|
2869
2559
|
commandType: "Migrate.Sync.Complete.Database";
|
2870
2560
|
input?: MigrateSyncCompleteCommandInput;
|
2871
2561
|
readonly output?: MigrateSyncCompleteCommandOutput;
|
2872
|
-
}
|
2562
|
+
}
|
2873
2563
|
|
2874
2564
|
// @public
|
2875
2565
|
export interface MigrationEligibilityInfo {
|
@@ -2960,16 +2650,16 @@ export interface MigrationValidationResult {
|
|
2960
2650
|
}
|
2961
2651
|
|
2962
2652
|
// @public
|
2963
|
-
export
|
2964
|
-
type: "MiSqlConnectionInfo";
|
2653
|
+
export interface MiSqlConnectionInfo extends ConnectionInfo {
|
2965
2654
|
managedInstanceResourceId: string;
|
2966
|
-
|
2655
|
+
type: "MiSqlConnectionInfo";
|
2656
|
+
}
|
2967
2657
|
|
2968
2658
|
// @public
|
2969
|
-
export
|
2659
|
+
export interface MongoDbCancelCommand extends CommandProperties {
|
2970
2660
|
commandType: "cancel";
|
2971
2661
|
input?: MongoDbCommandInput;
|
2972
|
-
}
|
2662
|
+
}
|
2973
2663
|
|
2974
2664
|
// @public
|
2975
2665
|
export interface MongoDbClusterInfo {
|
@@ -2983,7 +2673,7 @@ export interface MongoDbClusterInfo {
|
|
2983
2673
|
export type MongoDbClusterType = string;
|
2984
2674
|
|
2985
2675
|
// @public
|
2986
|
-
export
|
2676
|
+
export interface MongoDbCollectionInfo extends MongoDbObjectInfo {
|
2987
2677
|
databaseName: string;
|
2988
2678
|
isCapped: boolean;
|
2989
2679
|
isSystemCollection: boolean;
|
@@ -2991,12 +2681,12 @@ export type MongoDbCollectionInfo = MongoDbObjectInfo & {
|
|
2991
2681
|
shardKey?: MongoDbShardKeyInfo;
|
2992
2682
|
supportsSharding: boolean;
|
2993
2683
|
viewOf?: string;
|
2994
|
-
}
|
2684
|
+
}
|
2995
2685
|
|
2996
2686
|
// @public
|
2997
|
-
export
|
2687
|
+
export interface MongoDbCollectionProgress extends MongoDbProgress {
|
2998
2688
|
resultType: "Collection";
|
2999
|
-
}
|
2689
|
+
}
|
3000
2690
|
|
3001
2691
|
// @public
|
3002
2692
|
export interface MongoDbCollectionSettings {
|
@@ -3011,30 +2701,31 @@ export interface MongoDbCommandInput {
|
|
3011
2701
|
}
|
3012
2702
|
|
3013
2703
|
// @public
|
3014
|
-
export
|
3015
|
-
|
2704
|
+
export interface MongoDbConnectionInfo extends ConnectionInfo {
|
2705
|
+
additionalSettings?: string;
|
3016
2706
|
connectionString: string;
|
3017
2707
|
dataSource?: string;
|
3018
2708
|
encryptConnection?: boolean;
|
3019
|
-
|
2709
|
+
// (undocumented)
|
3020
2710
|
enforceSSL?: boolean;
|
3021
2711
|
port?: number;
|
3022
|
-
|
3023
|
-
|
2712
|
+
serverBrandVersion?: string;
|
2713
|
+
type: "MongoDbConnectionInfo";
|
2714
|
+
}
|
3024
2715
|
|
3025
2716
|
// @public
|
3026
|
-
export
|
2717
|
+
export interface MongoDbDatabaseInfo extends MongoDbObjectInfo {
|
3027
2718
|
collections: MongoDbCollectionInfo[];
|
3028
2719
|
supportsSharding: boolean;
|
3029
|
-
}
|
2720
|
+
}
|
3030
2721
|
|
3031
2722
|
// @public
|
3032
|
-
export
|
3033
|
-
resultType: "Database";
|
2723
|
+
export interface MongoDbDatabaseProgress extends MongoDbProgress {
|
3034
2724
|
collections?: {
|
3035
2725
|
[propertyName: string]: MongoDbCollectionProgress;
|
3036
2726
|
};
|
3037
|
-
|
2727
|
+
resultType: "Database";
|
2728
|
+
}
|
3038
2729
|
|
3039
2730
|
// @public
|
3040
2731
|
export interface MongoDbDatabaseSettings {
|
@@ -3056,23 +2747,23 @@ export interface MongoDbError {
|
|
3056
2747
|
export type MongoDbErrorType = string;
|
3057
2748
|
|
3058
2749
|
// @public
|
3059
|
-
export
|
2750
|
+
export interface MongoDbFinishCommand extends CommandProperties {
|
3060
2751
|
commandType: "finish";
|
3061
2752
|
input?: MongoDbFinishCommandInput;
|
3062
|
-
}
|
2753
|
+
}
|
3063
2754
|
|
3064
2755
|
// @public
|
3065
|
-
export
|
2756
|
+
export interface MongoDbFinishCommandInput extends MongoDbCommandInput {
|
3066
2757
|
immediate: boolean;
|
3067
|
-
}
|
2758
|
+
}
|
3068
2759
|
|
3069
2760
|
// @public
|
3070
|
-
export
|
3071
|
-
resultType: "Migration";
|
2761
|
+
export interface MongoDbMigrationProgress extends MongoDbProgress {
|
3072
2762
|
databases?: {
|
3073
2763
|
[propertyName: string]: MongoDbDatabaseProgress;
|
3074
2764
|
};
|
3075
|
-
|
2765
|
+
resultType: "Migration";
|
2766
|
+
}
|
3076
2767
|
|
3077
2768
|
// @public
|
3078
2769
|
export interface MongoDbMigrationSettings {
|
@@ -3129,10 +2820,10 @@ export type MongoDbProgressUnion = MongoDbProgress | MongoDbCollectionProgress |
|
|
3129
2820
|
export type MongoDbReplication = string;
|
3130
2821
|
|
3131
2822
|
// @public
|
3132
|
-
export
|
2823
|
+
export interface MongoDbRestartCommand extends CommandProperties {
|
3133
2824
|
commandType: "restart";
|
3134
2825
|
input?: MongoDbCommandInput;
|
3135
|
-
}
|
2826
|
+
}
|
3136
2827
|
|
3137
2828
|
// @public
|
3138
2829
|
export interface MongoDbShardKeyField {
|
@@ -3163,13 +2854,13 @@ export interface MongoDbThrottlingSettings {
|
|
3163
2854
|
}
|
3164
2855
|
|
3165
2856
|
// @public
|
3166
|
-
export
|
3167
|
-
type: "MySqlConnectionInfo";
|
3168
|
-
serverName: string;
|
2857
|
+
export interface MySqlConnectionInfo extends ConnectionInfo {
|
3169
2858
|
dataSource?: string;
|
3170
|
-
port: number;
|
3171
2859
|
encryptConnection?: boolean;
|
3172
|
-
|
2860
|
+
port: number;
|
2861
|
+
serverName: string;
|
2862
|
+
type: "MySqlConnectionInfo";
|
2863
|
+
}
|
3173
2864
|
|
3174
2865
|
// @public
|
3175
2866
|
export type MySqlTargetPlatformType = string;
|
@@ -3306,10 +2997,10 @@ export interface OperationsListOptionalParams extends coreClient.OperationOption
|
|
3306
2997
|
export type OperationsListResponse = OperationListResult;
|
3307
2998
|
|
3308
2999
|
// @public
|
3309
|
-
export
|
3310
|
-
type: "OracleConnectionInfo";
|
3000
|
+
export interface OracleConnectionInfo extends ConnectionInfo {
|
3311
3001
|
dataSource: string;
|
3312
|
-
|
3002
|
+
type: "OracleConnectionInfo";
|
3003
|
+
}
|
3313
3004
|
|
3314
3005
|
// @public
|
3315
3006
|
export interface OracleOCIDriverInfo {
|
@@ -3328,36 +3019,36 @@ export interface OrphanedUserInfo {
|
|
3328
3019
|
}
|
3329
3020
|
|
3330
3021
|
// @public
|
3331
|
-
export
|
3332
|
-
type: "PostgreSqlConnectionInfo";
|
3333
|
-
serverName: string;
|
3334
|
-
dataSource?: string;
|
3335
|
-
serverVersion?: string;
|
3022
|
+
export interface PostgreSqlConnectionInfo extends ConnectionInfo {
|
3336
3023
|
databaseName?: string;
|
3337
|
-
|
3024
|
+
dataSource?: string;
|
3338
3025
|
encryptConnection?: boolean;
|
3026
|
+
port: number;
|
3027
|
+
serverName: string;
|
3028
|
+
serverVersion?: string;
|
3339
3029
|
trustServerCertificate?: boolean;
|
3340
|
-
|
3030
|
+
type: "PostgreSqlConnectionInfo";
|
3031
|
+
}
|
3341
3032
|
|
3342
3033
|
// @public
|
3343
|
-
export
|
3344
|
-
eTag?: string;
|
3345
|
-
sourcePlatform?: ProjectSourcePlatform;
|
3034
|
+
export interface Project extends TrackedResource {
|
3346
3035
|
azureAuthenticationInfo?: string;
|
3347
|
-
targetPlatform?: ProjectTargetPlatform;
|
3348
3036
|
readonly creationTime?: Date;
|
3349
|
-
sourceConnectionInfo?: ConnectionInfoUnion;
|
3350
|
-
targetConnectionInfo?: ConnectionInfoUnion;
|
3351
3037
|
databasesInfo?: DatabaseInfo[];
|
3038
|
+
eTag?: string;
|
3352
3039
|
readonly provisioningState?: ProjectProvisioningState;
|
3353
|
-
|
3040
|
+
sourceConnectionInfo?: ConnectionInfoUnion;
|
3041
|
+
sourcePlatform?: ProjectSourcePlatform;
|
3042
|
+
targetConnectionInfo?: ConnectionInfoUnion;
|
3043
|
+
targetPlatform?: ProjectTargetPlatform;
|
3044
|
+
}
|
3354
3045
|
|
3355
3046
|
// @public
|
3356
|
-
export
|
3047
|
+
export interface ProjectFile extends Resource {
|
3357
3048
|
etag?: string;
|
3358
3049
|
properties?: ProjectFileProperties;
|
3359
3050
|
readonly systemData?: SystemData;
|
3360
|
-
}
|
3051
|
+
}
|
3361
3052
|
|
3362
3053
|
// @public
|
3363
3054
|
export interface ProjectFileProperties {
|
@@ -3433,11 +3124,11 @@ export type ProjectsUpdateResponse = Project;
|
|
3433
3124
|
export type ProjectTargetPlatform = string;
|
3434
3125
|
|
3435
3126
|
// @public
|
3436
|
-
export
|
3127
|
+
export interface ProjectTask extends Resource {
|
3437
3128
|
etag?: string;
|
3438
3129
|
properties?: ProjectTaskPropertiesUnion;
|
3439
3130
|
readonly systemData?: SystemData;
|
3440
|
-
}
|
3131
|
+
}
|
3441
3132
|
|
3442
3133
|
// @public
|
3443
3134
|
export interface ProjectTaskProperties {
|
@@ -3926,18 +3617,18 @@ export interface SqlBackupSetInfo {
|
|
3926
3617
|
}
|
3927
3618
|
|
3928
3619
|
// @public
|
3929
|
-
export
|
3930
|
-
|
3620
|
+
export interface SqlConnectionInfo extends ConnectionInfo {
|
3621
|
+
additionalSettings?: string;
|
3622
|
+
authentication?: AuthenticationType;
|
3931
3623
|
dataSource: string;
|
3932
|
-
|
3624
|
+
encryptConnection?: boolean;
|
3625
|
+
platform?: SqlSourcePlatform;
|
3933
3626
|
port?: string;
|
3934
3627
|
resourceId?: string;
|
3935
|
-
|
3936
|
-
encryptConnection?: boolean;
|
3937
|
-
additionalSettings?: string;
|
3628
|
+
serverName?: string;
|
3938
3629
|
trustServerCertificate?: boolean;
|
3939
|
-
|
3940
|
-
}
|
3630
|
+
type: "SqlConnectionInfo";
|
3631
|
+
}
|
3941
3632
|
|
3942
3633
|
// @public
|
3943
3634
|
export interface SqlConnectionInformation {
|
@@ -3963,10 +3654,10 @@ export interface SqlMigrationListResult {
|
|
3963
3654
|
}
|
3964
3655
|
|
3965
3656
|
// @public
|
3966
|
-
export
|
3967
|
-
readonly provisioningState?: string;
|
3657
|
+
export interface SqlMigrationService extends TrackedResource {
|
3968
3658
|
readonly integrationRuntimeState?: string;
|
3969
|
-
|
3659
|
+
readonly provisioningState?: string;
|
3660
|
+
}
|
3970
3661
|
|
3971
3662
|
// @public
|
3972
3663
|
export interface SqlMigrationServices {
|
@@ -4279,11 +3970,11 @@ export interface UploadOCIDriverTaskOutput {
|
|
4279
3970
|
}
|
4280
3971
|
|
4281
3972
|
// @public
|
4282
|
-
export
|
4283
|
-
taskType: "Service.Upload.OCI";
|
3973
|
+
export interface UploadOCIDriverTaskProperties extends ProjectTaskProperties {
|
4284
3974
|
input?: UploadOCIDriverTaskInput;
|
4285
3975
|
readonly output?: UploadOCIDriverTaskOutput[];
|
4286
|
-
|
3976
|
+
taskType: "Service.Upload.OCI";
|
3977
|
+
}
|
4287
3978
|
|
4288
3979
|
// @public
|
4289
3980
|
export interface Usages {
|
@@ -4305,14 +3996,15 @@ export interface UsagesListOptionalParams extends coreClient.OperationOptions {
|
|
4305
3996
|
export type UsagesListResponse = QuotaList;
|
4306
3997
|
|
4307
3998
|
// @public
|
4308
|
-
export
|
4309
|
-
taskType: "ValidateMigrationInput.SqlServer.SqlDb.Sync";
|
3999
|
+
export interface ValidateMigrationInputSqlServerSqlDbSyncTaskProperties extends ProjectTaskProperties {
|
4310
4000
|
input?: ValidateSyncMigrationInputSqlServerTaskInput;
|
4311
4001
|
readonly output?: ValidateSyncMigrationInputSqlServerTaskOutput[];
|
4312
|
-
|
4002
|
+
taskType: "ValidateMigrationInput.SqlServer.SqlDb.Sync";
|
4003
|
+
}
|
4313
4004
|
|
4314
4005
|
// @public
|
4315
|
-
export
|
4006
|
+
export interface ValidateMigrationInputSqlServerSqlMISyncTaskInput extends SqlServerSqlMISyncTaskInput {
|
4007
|
+
}
|
4316
4008
|
|
4317
4009
|
// @public
|
4318
4010
|
export interface ValidateMigrationInputSqlServerSqlMISyncTaskOutput {
|
@@ -4322,11 +4014,11 @@ export interface ValidateMigrationInputSqlServerSqlMISyncTaskOutput {
|
|
4322
4014
|
}
|
4323
4015
|
|
4324
4016
|
// @public
|
4325
|
-
export
|
4326
|
-
taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS";
|
4017
|
+
export interface ValidateMigrationInputSqlServerSqlMISyncTaskProperties extends ProjectTaskProperties {
|
4327
4018
|
input?: ValidateMigrationInputSqlServerSqlMISyncTaskInput;
|
4328
4019
|
readonly output?: ValidateMigrationInputSqlServerSqlMISyncTaskOutput[];
|
4329
|
-
|
4020
|
+
taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS";
|
4021
|
+
}
|
4330
4022
|
|
4331
4023
|
// @public
|
4332
4024
|
export interface ValidateMigrationInputSqlServerSqlMITaskInput {
|
@@ -4352,25 +4044,25 @@ export interface ValidateMigrationInputSqlServerSqlMITaskOutput {
|
|
4352
4044
|
}
|
4353
4045
|
|
4354
4046
|
// @public
|
4355
|
-
export
|
4356
|
-
taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI";
|
4047
|
+
export interface ValidateMigrationInputSqlServerSqlMITaskProperties extends ProjectTaskProperties {
|
4357
4048
|
input?: ValidateMigrationInputSqlServerSqlMITaskInput;
|
4358
4049
|
readonly output?: ValidateMigrationInputSqlServerSqlMITaskOutput[];
|
4359
|
-
|
4050
|
+
taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI";
|
4051
|
+
}
|
4360
4052
|
|
4361
4053
|
// @public
|
4362
|
-
export
|
4363
|
-
taskType: "Validate.MongoDb";
|
4054
|
+
export interface ValidateMongoDbTaskProperties extends ProjectTaskProperties {
|
4364
4055
|
input?: MongoDbMigrationSettings;
|
4365
4056
|
readonly output?: MongoDbMigrationProgress[];
|
4366
|
-
|
4057
|
+
taskType: "Validate.MongoDb";
|
4058
|
+
}
|
4367
4059
|
|
4368
4060
|
// @public
|
4369
|
-
export
|
4370
|
-
taskType: "Validate.Oracle.AzureDbPostgreSql.Sync";
|
4061
|
+
export interface ValidateOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
4371
4062
|
input?: MigrateOracleAzureDbPostgreSqlSyncTaskInput;
|
4372
4063
|
readonly output?: ValidateOracleAzureDbPostgreSqlSyncTaskOutput[];
|
4373
|
-
|
4064
|
+
taskType: "Validate.Oracle.AzureDbPostgreSql.Sync";
|
4065
|
+
}
|
4374
4066
|
|
4375
4067
|
// @public
|
4376
4068
|
export interface ValidateOracleAzureDbPostgreSqlSyncTaskOutput {
|