@azure/arm-datamigration 3.0.0-beta.2 → 3.0.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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
@@ -196,7 +196,7 @@ export declare interface CheckOCIDriverTaskOutput {
|
|
196
196
|
}
|
197
197
|
|
198
198
|
/** Properties for the task that checks for OCI drivers. */
|
199
|
-
export declare
|
199
|
+
export declare interface CheckOCIDriverTaskProperties extends ProjectTaskProperties {
|
200
200
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
201
201
|
taskType: "Service.Check.OCI";
|
202
202
|
/** Input for the service task to check for OCI drivers. */
|
@@ -206,7 +206,7 @@ export declare type CheckOCIDriverTaskProperties = ProjectTaskProperties & {
|
|
206
206
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
207
207
|
*/
|
208
208
|
readonly output?: CheckOCIDriverTaskOutput[];
|
209
|
-
}
|
209
|
+
}
|
210
210
|
|
211
211
|
/** Base class for all types of DMS command properties. If command is not supported by current client, this object is returned. */
|
212
212
|
export declare interface CommandProperties {
|
@@ -265,7 +265,7 @@ export declare interface ConnectionInfo {
|
|
265
265
|
export declare type ConnectionInfoUnion = ConnectionInfo | MongoDbConnectionInfo | SqlConnectionInfo | MySqlConnectionInfo | OracleConnectionInfo | PostgreSqlConnectionInfo | MiSqlConnectionInfo;
|
266
266
|
|
267
267
|
/** Properties for the task that validates the connection to and provides information about a MongoDB server */
|
268
|
-
export declare
|
268
|
+
export declare interface ConnectToMongoDbTaskProperties extends ProjectTaskProperties {
|
269
269
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
270
270
|
taskType: "Connect.MongoDb";
|
271
271
|
/** Describes a connection to a MongoDB data source */
|
@@ -275,7 +275,7 @@ export declare type ConnectToMongoDbTaskProperties = ProjectTaskProperties & {
|
|
275
275
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
276
276
|
*/
|
277
277
|
readonly output?: MongoDbClusterInfo[];
|
278
|
-
}
|
278
|
+
}
|
279
279
|
|
280
280
|
/** Input for the task that validates MySQL database connection */
|
281
281
|
export declare interface ConnectToSourceMySqlTaskInput {
|
@@ -290,7 +290,7 @@ export declare interface ConnectToSourceMySqlTaskInput {
|
|
290
290
|
}
|
291
291
|
|
292
292
|
/** Properties for the task that validates MySQL database connection */
|
293
|
-
export declare
|
293
|
+
export declare interface ConnectToSourceMySqlTaskProperties extends ProjectTaskProperties {
|
294
294
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
295
295
|
taskType: "ConnectToSource.MySql";
|
296
296
|
/** Task input */
|
@@ -300,7 +300,7 @@ export declare type ConnectToSourceMySqlTaskProperties = ProjectTaskProperties &
|
|
300
300
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
301
301
|
*/
|
302
302
|
readonly output?: ConnectToSourceNonSqlTaskOutput[];
|
303
|
-
}
|
303
|
+
}
|
304
304
|
|
305
305
|
/** Output for connect to MySQL type source */
|
306
306
|
export declare interface ConnectToSourceNonSqlTaskOutput {
|
@@ -362,7 +362,7 @@ export declare interface ConnectToSourceOracleSyncTaskOutput {
|
|
362
362
|
}
|
363
363
|
|
364
364
|
/** Properties for the task that validates Oracle database connection */
|
365
|
-
export declare
|
365
|
+
export declare interface ConnectToSourceOracleSyncTaskProperties extends ProjectTaskProperties {
|
366
366
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
367
367
|
taskType: "ConnectToSource.Oracle.Sync";
|
368
368
|
/** Task input */
|
@@ -372,7 +372,7 @@ export declare type ConnectToSourceOracleSyncTaskProperties = ProjectTaskPropert
|
|
372
372
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
373
373
|
*/
|
374
374
|
readonly output?: ConnectToSourceOracleSyncTaskOutput[];
|
375
|
-
}
|
375
|
+
}
|
376
376
|
|
377
377
|
/** Input for the task that validates connection to PostgreSQL and source server requirements */
|
378
378
|
export declare interface ConnectToSourcePostgreSqlSyncTaskInput {
|
@@ -410,7 +410,7 @@ export declare interface ConnectToSourcePostgreSqlSyncTaskOutput {
|
|
410
410
|
}
|
411
411
|
|
412
412
|
/** Properties for the task that validates connection to PostgreSQL server and source server requirements for online migration */
|
413
|
-
export declare
|
413
|
+
export declare interface ConnectToSourcePostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
414
414
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
415
415
|
taskType: "ConnectToSource.PostgreSql.Sync";
|
416
416
|
/** Task input */
|
@@ -420,10 +420,10 @@ export declare type ConnectToSourcePostgreSqlSyncTaskProperties = ProjectTaskPro
|
|
420
420
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
421
421
|
*/
|
422
422
|
readonly output?: ConnectToSourcePostgreSqlSyncTaskOutput[];
|
423
|
-
}
|
423
|
+
}
|
424
424
|
|
425
425
|
/** Properties for the task that validates connection to SQL Server and source server requirements for online migration */
|
426
|
-
export declare
|
426
|
+
export declare interface ConnectToSourceSqlServerSyncTaskProperties extends ProjectTaskProperties {
|
427
427
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
428
428
|
taskType: "ConnectToSource.SqlServer.Sync";
|
429
429
|
/** Task input */
|
@@ -433,7 +433,7 @@ export declare type ConnectToSourceSqlServerSyncTaskProperties = ProjectTaskProp
|
|
433
433
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
434
434
|
*/
|
435
435
|
readonly output?: ConnectToSourceSqlServerTaskOutputUnion[];
|
436
|
-
}
|
436
|
+
}
|
437
437
|
|
438
438
|
/** Input for the task that validates connection to SQL Server and also validates source server requirements */
|
439
439
|
export declare interface ConnectToSourceSqlServerTaskInput {
|
@@ -465,7 +465,7 @@ export declare interface ConnectToSourceSqlServerTaskOutput {
|
|
465
465
|
}
|
466
466
|
|
467
467
|
/** Agent Job level output for the task that validates connection to SQL Server and also validates source server requirements */
|
468
|
-
export declare
|
468
|
+
export declare interface ConnectToSourceSqlServerTaskOutputAgentJobLevel extends ConnectToSourceSqlServerTaskOutput {
|
469
469
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
470
470
|
resultType: "AgentJobLevelOutput";
|
471
471
|
/**
|
@@ -503,10 +503,10 @@ export declare type ConnectToSourceSqlServerTaskOutputAgentJobLevel = ConnectToS
|
|
503
503
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
504
504
|
*/
|
505
505
|
readonly migrationEligibility?: MigrationEligibilityInfo;
|
506
|
-
}
|
506
|
+
}
|
507
507
|
|
508
508
|
/** Database level output for the task that validates connection to SQL Server and also validates source server requirements */
|
509
|
-
export declare
|
509
|
+
export declare interface ConnectToSourceSqlServerTaskOutputDatabaseLevel extends ConnectToSourceSqlServerTaskOutput {
|
510
510
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
511
511
|
resultType: "DatabaseLevelOutput";
|
512
512
|
/**
|
@@ -534,10 +534,10 @@ export declare type ConnectToSourceSqlServerTaskOutputDatabaseLevel = ConnectToS
|
|
534
534
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
535
535
|
*/
|
536
536
|
readonly databaseState?: DatabaseState;
|
537
|
-
}
|
537
|
+
}
|
538
538
|
|
539
539
|
/** Login level output for the task that validates connection to SQL Server and also validates source server requirements */
|
540
|
-
export declare
|
540
|
+
export declare interface ConnectToSourceSqlServerTaskOutputLoginLevel extends ConnectToSourceSqlServerTaskOutput {
|
541
541
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
542
542
|
resultType: "LoginLevelOutput";
|
543
543
|
/**
|
@@ -565,10 +565,10 @@ export declare type ConnectToSourceSqlServerTaskOutputLoginLevel = ConnectToSour
|
|
565
565
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
566
566
|
*/
|
567
567
|
readonly migrationEligibility?: MigrationEligibilityInfo;
|
568
|
-
}
|
568
|
+
}
|
569
569
|
|
570
570
|
/** Task level output for the task that validates connection to SQL Server and also validates source server requirements */
|
571
|
-
export declare
|
571
|
+
export declare interface ConnectToSourceSqlServerTaskOutputTaskLevel extends ConnectToSourceSqlServerTaskOutput {
|
572
572
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
573
573
|
resultType: "TaskLevelOutput";
|
574
574
|
/**
|
@@ -606,12 +606,12 @@ export declare type ConnectToSourceSqlServerTaskOutputTaskLevel = ConnectToSourc
|
|
606
606
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
607
607
|
*/
|
608
608
|
readonly validationErrors?: ReportableException[];
|
609
|
-
}
|
609
|
+
}
|
610
610
|
|
611
611
|
export declare type ConnectToSourceSqlServerTaskOutputUnion = ConnectToSourceSqlServerTaskOutput | ConnectToSourceSqlServerTaskOutputTaskLevel | ConnectToSourceSqlServerTaskOutputDatabaseLevel | ConnectToSourceSqlServerTaskOutputLoginLevel | ConnectToSourceSqlServerTaskOutputAgentJobLevel;
|
612
612
|
|
613
613
|
/** Properties for the task that validates connection to SQL Server and also validates source server requirements */
|
614
|
-
export declare
|
614
|
+
export declare interface ConnectToSourceSqlServerTaskProperties extends ProjectTaskProperties {
|
615
615
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
616
616
|
taskType: "ConnectToSource.SqlServer";
|
617
617
|
/** Task input */
|
@@ -621,7 +621,7 @@ export declare type ConnectToSourceSqlServerTaskProperties = ProjectTaskProperti
|
|
621
621
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
622
622
|
*/
|
623
623
|
readonly output?: ConnectToSourceSqlServerTaskOutputUnion[];
|
624
|
-
}
|
624
|
+
}
|
625
625
|
|
626
626
|
/** Input for the task that validates connection to Azure Database for MySQL and target server requirements */
|
627
627
|
export declare interface ConnectToTargetAzureDbForMySqlTaskInput {
|
@@ -663,7 +663,7 @@ export declare interface ConnectToTargetAzureDbForMySqlTaskOutput {
|
|
663
663
|
}
|
664
664
|
|
665
665
|
/** Properties for the task that validates connection to Azure Database for MySQL and target server requirements */
|
666
|
-
export declare
|
666
|
+
export declare interface ConnectToTargetAzureDbForMySqlTaskProperties extends ProjectTaskProperties {
|
667
667
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
668
668
|
taskType: "ConnectToTarget.AzureDbForMySql";
|
669
669
|
/** Task input */
|
@@ -673,7 +673,7 @@ export declare type ConnectToTargetAzureDbForMySqlTaskProperties = ProjectTaskPr
|
|
673
673
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
674
674
|
*/
|
675
675
|
readonly output?: ConnectToTargetAzureDbForMySqlTaskOutput[];
|
676
|
-
}
|
676
|
+
}
|
677
677
|
|
678
678
|
/** Input for the task that validates connection to Azure Database for PostgreSQL and target server requirements */
|
679
679
|
export declare interface ConnectToTargetAzureDbForPostgreSqlSyncTaskInput {
|
@@ -713,7 +713,7 @@ export declare interface ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput {
|
|
713
713
|
}
|
714
714
|
|
715
715
|
/** Properties for the task that validates connection to Azure Database For PostgreSQL server and target server requirements for online migration */
|
716
|
-
export declare
|
716
|
+
export declare interface ConnectToTargetAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
717
717
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
718
718
|
taskType: "ConnectToTarget.AzureDbForPostgreSql.Sync";
|
719
719
|
/** Task input */
|
@@ -723,7 +723,7 @@ export declare type ConnectToTargetAzureDbForPostgreSqlSyncTaskProperties = Proj
|
|
723
723
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
724
724
|
*/
|
725
725
|
readonly output?: ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput[];
|
726
|
-
}
|
726
|
+
}
|
727
727
|
|
728
728
|
/** Input for the task that validates connection to Azure Database for PostgreSQL and target server requirements for Oracle source. */
|
729
729
|
export declare interface ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskInput {
|
@@ -763,7 +763,7 @@ export declare interface ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutput
|
|
763
763
|
}
|
764
764
|
|
765
765
|
/** Properties for the task that validates connection to Azure Database For PostgreSQL server and target server requirements for online migration for Oracle source. */
|
766
|
-
export declare
|
766
|
+
export declare interface ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
767
767
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
768
768
|
taskType: "ConnectToTarget.Oracle.AzureDbForPostgreSql.Sync";
|
769
769
|
/** Task input */
|
@@ -773,7 +773,7 @@ export declare type ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskProperties
|
|
773
773
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
774
774
|
*/
|
775
775
|
readonly output?: ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutput[];
|
776
|
-
}
|
776
|
+
}
|
777
777
|
|
778
778
|
/** Input for the task that validates connection to Azure SQL DB and target server requirements */
|
779
779
|
export declare interface ConnectToTargetSqlDbSyncTaskInput {
|
@@ -784,7 +784,7 @@ export declare interface ConnectToTargetSqlDbSyncTaskInput {
|
|
784
784
|
}
|
785
785
|
|
786
786
|
/** Properties for the task that validates connection to SQL DB and target server requirements for online migration */
|
787
|
-
export declare
|
787
|
+
export declare interface ConnectToTargetSqlDbSyncTaskProperties extends ProjectTaskProperties {
|
788
788
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
789
789
|
taskType: "ConnectToTarget.SqlDb.Sync";
|
790
790
|
/** Task input */
|
@@ -794,7 +794,7 @@ export declare type ConnectToTargetSqlDbSyncTaskProperties = ProjectTaskProperti
|
|
794
794
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
795
795
|
*/
|
796
796
|
readonly output?: ConnectToTargetSqlDbTaskOutput[];
|
797
|
-
}
|
797
|
+
}
|
798
798
|
|
799
799
|
/** Input for the task that validates connection to SQL DB and target server requirements */
|
800
800
|
export declare interface ConnectToTargetSqlDbTaskInput {
|
@@ -827,7 +827,7 @@ export declare interface ConnectToTargetSqlDbTaskOutput {
|
|
827
827
|
}
|
828
828
|
|
829
829
|
/** Properties for the task that validates connection to SQL DB and target server requirements */
|
830
|
-
export declare
|
830
|
+
export declare interface ConnectToTargetSqlDbTaskProperties extends ProjectTaskProperties {
|
831
831
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
832
832
|
taskType: "ConnectToTarget.SqlDb";
|
833
833
|
/** Task input */
|
@@ -837,7 +837,7 @@ export declare type ConnectToTargetSqlDbTaskProperties = ProjectTaskProperties &
|
|
837
837
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
838
838
|
*/
|
839
839
|
readonly output?: ConnectToTargetSqlDbTaskOutput[];
|
840
|
-
}
|
840
|
+
}
|
841
841
|
|
842
842
|
/** Input for the task that validates connection to Azure SQL Database Managed Instance online scenario. */
|
843
843
|
export declare interface ConnectToTargetSqlMISyncTaskInput {
|
@@ -867,7 +867,7 @@ export declare interface ConnectToTargetSqlMISyncTaskOutput {
|
|
867
867
|
}
|
868
868
|
|
869
869
|
/** Properties for the task that validates connection to Azure SQL Database Managed Instance */
|
870
|
-
export declare
|
870
|
+
export declare interface ConnectToTargetSqlMISyncTaskProperties extends ProjectTaskProperties {
|
871
871
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
872
872
|
taskType: "ConnectToTarget.AzureSqlDbMI.Sync.LRS";
|
873
873
|
/** Task input */
|
@@ -877,7 +877,7 @@ export declare type ConnectToTargetSqlMISyncTaskProperties = ProjectTaskProperti
|
|
877
877
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
878
878
|
*/
|
879
879
|
readonly output?: ConnectToTargetSqlMISyncTaskOutput[];
|
880
|
-
}
|
880
|
+
}
|
881
881
|
|
882
882
|
/** Input for the task that validates connection to Azure SQL Database Managed Instance. */
|
883
883
|
export declare interface ConnectToTargetSqlMITaskInput {
|
@@ -926,7 +926,7 @@ export declare interface ConnectToTargetSqlMITaskOutput {
|
|
926
926
|
}
|
927
927
|
|
928
928
|
/** Properties for the task that validates connection to Azure SQL Database Managed Instance */
|
929
|
-
export declare
|
929
|
+
export declare interface ConnectToTargetSqlMITaskProperties extends ProjectTaskProperties {
|
930
930
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
931
931
|
taskType: "ConnectToTarget.AzureSqlDbMI";
|
932
932
|
/** Task input */
|
@@ -936,7 +936,7 @@ export declare type ConnectToTargetSqlMITaskProperties = ProjectTaskProperties &
|
|
936
936
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
937
937
|
*/
|
938
938
|
readonly output?: ConnectToTargetSqlMITaskOutput[];
|
939
|
-
}
|
939
|
+
}
|
940
940
|
|
941
941
|
/**
|
942
942
|
* Defines values for CreatedByType. \
|
@@ -1099,7 +1099,7 @@ export declare interface DatabaseInfo {
|
|
1099
1099
|
}
|
1100
1100
|
|
1101
1101
|
/** Database Migration Resource. */
|
1102
|
-
export declare
|
1102
|
+
export declare interface DatabaseMigration extends ProxyResource {
|
1103
1103
|
/**
|
1104
1104
|
* Metadata pertaining to creation and last modification of the resource.
|
1105
1105
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -1107,7 +1107,7 @@ export declare type DatabaseMigration = ProxyResource & {
|
|
1107
1107
|
readonly systemData?: SystemData;
|
1108
1108
|
/** Database Migration Resource properties. */
|
1109
1109
|
properties?: DatabaseMigrationPropertiesUnion;
|
1110
|
-
}
|
1110
|
+
}
|
1111
1111
|
|
1112
1112
|
/** A list of Database Migrations. */
|
1113
1113
|
export declare interface DatabaseMigrationListResult {
|
@@ -1159,7 +1159,7 @@ export declare interface DatabaseMigrationProperties {
|
|
1159
1159
|
}
|
1160
1160
|
|
1161
1161
|
/** Database Migration Resource properties for SQL Managed Instance. */
|
1162
|
-
export declare
|
1162
|
+
export declare interface DatabaseMigrationPropertiesSqlMi extends DatabaseMigrationProperties {
|
1163
1163
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
1164
1164
|
kind: "SqlMi";
|
1165
1165
|
/**
|
@@ -1175,10 +1175,10 @@ export declare type DatabaseMigrationPropertiesSqlMi = DatabaseMigrationProperti
|
|
1175
1175
|
backupConfiguration?: BackupConfiguration;
|
1176
1176
|
/** Offline configuration. */
|
1177
1177
|
offlineConfiguration?: OfflineConfiguration;
|
1178
|
-
}
|
1178
|
+
}
|
1179
1179
|
|
1180
1180
|
/** Database Migration Resource properties for SQL Virtual Machine. */
|
1181
|
-
export declare
|
1181
|
+
export declare interface DatabaseMigrationPropertiesSqlVm extends DatabaseMigrationProperties {
|
1182
1182
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
1183
1183
|
kind: "SqlVm";
|
1184
1184
|
/**
|
@@ -1194,12 +1194,12 @@ export declare type DatabaseMigrationPropertiesSqlVm = DatabaseMigrationProperti
|
|
1194
1194
|
backupConfiguration?: BackupConfiguration;
|
1195
1195
|
/** Offline configuration. */
|
1196
1196
|
offlineConfiguration?: OfflineConfiguration;
|
1197
|
-
}
|
1197
|
+
}
|
1198
1198
|
|
1199
1199
|
export declare type DatabaseMigrationPropertiesUnion = DatabaseMigrationProperties | DatabaseMigrationPropertiesSqlMi | DatabaseMigrationPropertiesSqlVm;
|
1200
1200
|
|
1201
1201
|
/** Database Migration Resource for SQL Managed Instance. */
|
1202
|
-
export declare
|
1202
|
+
export declare interface DatabaseMigrationSqlMi extends ProxyResource {
|
1203
1203
|
/**
|
1204
1204
|
* Metadata pertaining to creation and last modification of the resource.
|
1205
1205
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -1207,10 +1207,10 @@ export declare type DatabaseMigrationSqlMi = ProxyResource & {
|
|
1207
1207
|
readonly systemData?: SystemData;
|
1208
1208
|
/** Database Migration Resource properties for SQL Managed Instance. */
|
1209
1209
|
properties?: DatabaseMigrationPropertiesSqlMi;
|
1210
|
-
}
|
1210
|
+
}
|
1211
1211
|
|
1212
1212
|
/** Database Migration Resource for SQL Virtual Machine. */
|
1213
|
-
export declare
|
1213
|
+
export declare interface DatabaseMigrationSqlVm extends ProxyResource {
|
1214
1214
|
/**
|
1215
1215
|
* Metadata pertaining to creation and last modification of the resource.
|
1216
1216
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -1218,7 +1218,7 @@ export declare type DatabaseMigrationSqlVm = ProxyResource & {
|
|
1218
1218
|
readonly systemData?: SystemData;
|
1219
1219
|
/** Database Migration Resource properties for SQL Virtual Machine. */
|
1220
1220
|
properties?: DatabaseMigrationPropertiesSqlVm;
|
1221
|
-
}
|
1221
|
+
}
|
1222
1222
|
|
1223
1223
|
/** Interface representing a DatabaseMigrationsSqlMi. */
|
1224
1224
|
export declare interface DatabaseMigrationsSqlMi {
|
@@ -1513,13 +1513,13 @@ export declare interface DatabaseObjectName {
|
|
1513
1513
|
export declare type DatabaseState = string;
|
1514
1514
|
|
1515
1515
|
/** Summary of database results in the migration */
|
1516
|
-
export declare
|
1516
|
+
export declare interface DatabaseSummaryResult extends DataItemMigrationSummaryResult {
|
1517
1517
|
/**
|
1518
1518
|
* Size of the database in megabytes
|
1519
1519
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1520
1520
|
*/
|
1521
1521
|
readonly sizeMB?: number;
|
1522
|
-
}
|
1522
|
+
}
|
1523
1523
|
|
1524
1524
|
/** Table properties */
|
1525
1525
|
export declare interface DatabaseTable {
|
@@ -1616,6 +1616,8 @@ export declare class DataMigrationManagementClient extends coreClient.ServiceCli
|
|
1616
1616
|
* @param options The parameter options
|
1617
1617
|
*/
|
1618
1618
|
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DataMigrationManagementClientOptionalParams);
|
1619
|
+
/** A function that adds a policy that sets the api-version (or equivalent) to reflect the library version. */
|
1620
|
+
private addCustomApiVersionPolicy;
|
1619
1621
|
databaseMigrationsSqlMi: DatabaseMigrationsSqlMi;
|
1620
1622
|
databaseMigrationsSqlVm: DatabaseMigrationsSqlVm;
|
1621
1623
|
operations: Operations;
|
@@ -1698,7 +1700,7 @@ export declare interface DataMigrationProjectMetadata {
|
|
1698
1700
|
export declare type DataMigrationResultCode = string;
|
1699
1701
|
|
1700
1702
|
/** A Database Migration Service resource */
|
1701
|
-
export declare
|
1703
|
+
export declare interface DataMigrationService extends TrackedResource {
|
1702
1704
|
/** HTTP strong entity tag value. Ignored if submitted */
|
1703
1705
|
etag?: string;
|
1704
1706
|
/** The resource kind. Only 'vm' (the default) is supported. */
|
@@ -1720,7 +1722,7 @@ export declare type DataMigrationService = TrackedResource & {
|
|
1720
1722
|
autoStopDelay?: string;
|
1721
1723
|
/** Whether service resources should be deleted when stopped. (Turned on by default) */
|
1722
1724
|
deleteResourcesOnStop?: boolean;
|
1723
|
-
}
|
1725
|
+
}
|
1724
1726
|
|
1725
1727
|
/** OData page of service objects */
|
1726
1728
|
export declare interface DataMigrationServiceList {
|
@@ -1946,6 +1948,15 @@ export declare interface FilesUpdateOptionalParams extends coreClient.OperationO
|
|
1946
1948
|
/** Contains response data for the update operation. */
|
1947
1949
|
export declare type FilesUpdateResponse = ProjectFile;
|
1948
1950
|
|
1951
|
+
/**
|
1952
|
+
* Given a result page from a pageable operation, returns a
|
1953
|
+
* continuation token that can be used to begin paging from
|
1954
|
+
* that point later.
|
1955
|
+
* @param page A result object from calling .byPage() on a paged operation.
|
1956
|
+
* @returns The continuation token that can be passed into byPage().
|
1957
|
+
*/
|
1958
|
+
export declare function getContinuationToken(page: unknown): string | undefined;
|
1959
|
+
|
1949
1960
|
/** Input for the task that reads configuration from project artifacts */
|
1950
1961
|
export declare interface GetProjectDetailsNonSqlTaskInput {
|
1951
1962
|
/** Name of the migration project */
|
@@ -1979,7 +1990,7 @@ export declare interface GetTdeCertificatesSqlTaskOutput {
|
|
1979
1990
|
}
|
1980
1991
|
|
1981
1992
|
/** Properties for the task that gets TDE certificates in Base64 encoded format. */
|
1982
|
-
export declare
|
1993
|
+
export declare interface GetTdeCertificatesSqlTaskProperties extends ProjectTaskProperties {
|
1983
1994
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
1984
1995
|
taskType: "GetTDECertificates.Sql";
|
1985
1996
|
/** Task input */
|
@@ -1989,7 +2000,7 @@ export declare type GetTdeCertificatesSqlTaskProperties = ProjectTaskProperties
|
|
1989
2000
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
1990
2001
|
*/
|
1991
2002
|
readonly output?: GetTdeCertificatesSqlTaskOutput[];
|
1992
|
-
}
|
2003
|
+
}
|
1993
2004
|
|
1994
2005
|
/** Input for the task that collects user tables for the given list of databases */
|
1995
2006
|
export declare interface GetUserTablesMySqlTaskInput {
|
@@ -2019,7 +2030,7 @@ export declare interface GetUserTablesMySqlTaskOutput {
|
|
2019
2030
|
}
|
2020
2031
|
|
2021
2032
|
/** Properties for the task that collects user tables for the given list of databases */
|
2022
|
-
export declare
|
2033
|
+
export declare interface GetUserTablesMySqlTaskProperties extends ProjectTaskProperties {
|
2023
2034
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2024
2035
|
taskType: "GetUserTablesMySql";
|
2025
2036
|
/** Task input */
|
@@ -2029,7 +2040,7 @@ export declare type GetUserTablesMySqlTaskProperties = ProjectTaskProperties & {
|
|
2029
2040
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2030
2041
|
*/
|
2031
2042
|
readonly output?: GetUserTablesMySqlTaskOutput[];
|
2032
|
-
}
|
2043
|
+
}
|
2033
2044
|
|
2034
2045
|
/** Input for the task that gets the list of tables contained within a provided list of Oracle schemas. */
|
2035
2046
|
export declare interface GetUserTablesOracleTaskInput {
|
@@ -2059,7 +2070,7 @@ export declare interface GetUserTablesOracleTaskOutput {
|
|
2059
2070
|
}
|
2060
2071
|
|
2061
2072
|
/** Properties for the task that collects user tables for the given list of Oracle schemas */
|
2062
|
-
export declare
|
2073
|
+
export declare interface GetUserTablesOracleTaskProperties extends ProjectTaskProperties {
|
2063
2074
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2064
2075
|
taskType: "GetUserTablesOracle";
|
2065
2076
|
/** Task input */
|
@@ -2069,7 +2080,7 @@ export declare type GetUserTablesOracleTaskProperties = ProjectTaskProperties &
|
|
2069
2080
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2070
2081
|
*/
|
2071
2082
|
readonly output?: GetUserTablesOracleTaskOutput[];
|
2072
|
-
}
|
2083
|
+
}
|
2073
2084
|
|
2074
2085
|
/** Input for the task that gets the list of tables for a provided list of PostgreSQL databases. */
|
2075
2086
|
export declare interface GetUserTablesPostgreSqlTaskInput {
|
@@ -2099,7 +2110,7 @@ export declare interface GetUserTablesPostgreSqlTaskOutput {
|
|
2099
2110
|
}
|
2100
2111
|
|
2101
2112
|
/** Properties for the task that collects user tables for the given list of databases */
|
2102
|
-
export declare
|
2113
|
+
export declare interface GetUserTablesPostgreSqlTaskProperties extends ProjectTaskProperties {
|
2103
2114
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2104
2115
|
taskType: "GetUserTablesPostgreSql";
|
2105
2116
|
/** Task input */
|
@@ -2109,7 +2120,7 @@ export declare type GetUserTablesPostgreSqlTaskProperties = ProjectTaskPropertie
|
|
2109
2120
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2110
2121
|
*/
|
2111
2122
|
readonly output?: GetUserTablesPostgreSqlTaskOutput[];
|
2112
|
-
}
|
2123
|
+
}
|
2113
2124
|
|
2114
2125
|
/** Input for the task that collects user tables for the given list of databases */
|
2115
2126
|
export declare interface GetUserTablesSqlSyncTaskInput {
|
@@ -2148,7 +2159,7 @@ export declare interface GetUserTablesSqlSyncTaskOutput {
|
|
2148
2159
|
}
|
2149
2160
|
|
2150
2161
|
/** Properties for the task that collects user tables for the given list of databases */
|
2151
|
-
export declare
|
2162
|
+
export declare interface GetUserTablesSqlSyncTaskProperties extends ProjectTaskProperties {
|
2152
2163
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2153
2164
|
taskType: "GetUserTables.AzureSqlDb.Sync";
|
2154
2165
|
/** Task input */
|
@@ -2158,7 +2169,7 @@ export declare type GetUserTablesSqlSyncTaskProperties = ProjectTaskProperties &
|
|
2158
2169
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2159
2170
|
*/
|
2160
2171
|
readonly output?: GetUserTablesSqlSyncTaskOutput[];
|
2161
|
-
}
|
2172
|
+
}
|
2162
2173
|
|
2163
2174
|
/** Input for the task that collects user tables for the given list of databases */
|
2164
2175
|
export declare interface GetUserTablesSqlTaskInput {
|
@@ -2188,7 +2199,7 @@ export declare interface GetUserTablesSqlTaskOutput {
|
|
2188
2199
|
}
|
2189
2200
|
|
2190
2201
|
/** Properties for the task that collects user tables for the given list of databases */
|
2191
|
-
export declare
|
2202
|
+
export declare interface GetUserTablesSqlTaskProperties extends ProjectTaskProperties {
|
2192
2203
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2193
2204
|
taskType: "GetUserTables.Sql";
|
2194
2205
|
/** Task input */
|
@@ -2198,7 +2209,7 @@ export declare type GetUserTablesSqlTaskProperties = ProjectTaskProperties & {
|
|
2198
2209
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2199
2210
|
*/
|
2200
2211
|
readonly output?: GetUserTablesSqlTaskOutput[];
|
2201
|
-
}
|
2212
|
+
}
|
2202
2213
|
|
2203
2214
|
/** Input for the service task to install an OCI driver. */
|
2204
2215
|
export declare interface InstallOCIDriverTaskInput {
|
@@ -2216,7 +2227,7 @@ export declare interface InstallOCIDriverTaskOutput {
|
|
2216
2227
|
}
|
2217
2228
|
|
2218
2229
|
/** Properties for the task that installs an OCI driver. */
|
2219
|
-
export declare
|
2230
|
+
export declare interface InstallOCIDriverTaskProperties extends ProjectTaskProperties {
|
2220
2231
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2221
2232
|
taskType: "Service.Install.OCI";
|
2222
2233
|
/** Input for the service task to install an OCI driver. */
|
@@ -2226,7 +2237,7 @@ export declare type InstallOCIDriverTaskProperties = ProjectTaskProperties & {
|
|
2226
2237
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2227
2238
|
*/
|
2228
2239
|
readonly output?: InstallOCIDriverTaskOutput[];
|
2229
|
-
}
|
2240
|
+
}
|
2230
2241
|
|
2231
2242
|
/** Integration Runtime Monitoring Data. */
|
2232
2243
|
export declare interface IntegrationRuntimeMonitoringData {
|
@@ -2244,527 +2255,841 @@ export declare interface IntegrationRuntimeMonitoringData {
|
|
2244
2255
|
|
2245
2256
|
/** Known values of {@link AuthenticationType} that the service accepts. */
|
2246
2257
|
export declare enum KnownAuthenticationType {
|
2258
|
+
/** None */
|
2247
2259
|
None = "None",
|
2260
|
+
/** WindowsAuthentication */
|
2248
2261
|
WindowsAuthentication = "WindowsAuthentication",
|
2262
|
+
/** SqlAuthentication */
|
2249
2263
|
SqlAuthentication = "SqlAuthentication",
|
2264
|
+
/** ActiveDirectoryIntegrated */
|
2250
2265
|
ActiveDirectoryIntegrated = "ActiveDirectoryIntegrated",
|
2266
|
+
/** ActiveDirectoryPassword */
|
2251
2267
|
ActiveDirectoryPassword = "ActiveDirectoryPassword"
|
2252
2268
|
}
|
2253
2269
|
|
2254
2270
|
/** Known values of {@link BackupFileStatus} that the service accepts. */
|
2255
2271
|
export declare enum KnownBackupFileStatus {
|
2272
|
+
/** Arrived */
|
2256
2273
|
Arrived = "Arrived",
|
2274
|
+
/** Queued */
|
2257
2275
|
Queued = "Queued",
|
2276
|
+
/** Uploading */
|
2258
2277
|
Uploading = "Uploading",
|
2278
|
+
/** Uploaded */
|
2259
2279
|
Uploaded = "Uploaded",
|
2280
|
+
/** Restoring */
|
2260
2281
|
Restoring = "Restoring",
|
2282
|
+
/** Restored */
|
2261
2283
|
Restored = "Restored",
|
2284
|
+
/** Cancelled */
|
2262
2285
|
Cancelled = "Cancelled"
|
2263
2286
|
}
|
2264
2287
|
|
2265
2288
|
/** Known values of {@link BackupMode} that the service accepts. */
|
2266
2289
|
export declare enum KnownBackupMode {
|
2290
|
+
/** CreateBackup */
|
2267
2291
|
CreateBackup = "CreateBackup",
|
2292
|
+
/** ExistingBackup */
|
2268
2293
|
ExistingBackup = "ExistingBackup"
|
2269
2294
|
}
|
2270
2295
|
|
2271
2296
|
/** Known values of {@link BackupType} that the service accepts. */
|
2272
2297
|
export declare enum KnownBackupType {
|
2298
|
+
/** Database */
|
2273
2299
|
Database = "Database",
|
2300
|
+
/** TransactionLog */
|
2274
2301
|
TransactionLog = "TransactionLog",
|
2302
|
+
/** File */
|
2275
2303
|
File = "File",
|
2304
|
+
/** DifferentialDatabase */
|
2276
2305
|
DifferentialDatabase = "DifferentialDatabase",
|
2306
|
+
/** DifferentialFile */
|
2277
2307
|
DifferentialFile = "DifferentialFile",
|
2308
|
+
/** Partial */
|
2278
2309
|
Partial = "Partial",
|
2310
|
+
/** DifferentialPartial */
|
2279
2311
|
DifferentialPartial = "DifferentialPartial"
|
2280
2312
|
}
|
2281
2313
|
|
2282
2314
|
/** Known values of {@link CommandState} that the service accepts. */
|
2283
2315
|
export declare enum KnownCommandState {
|
2316
|
+
/** Unknown */
|
2284
2317
|
Unknown = "Unknown",
|
2318
|
+
/** Accepted */
|
2285
2319
|
Accepted = "Accepted",
|
2320
|
+
/** Running */
|
2286
2321
|
Running = "Running",
|
2322
|
+
/** Succeeded */
|
2287
2323
|
Succeeded = "Succeeded",
|
2324
|
+
/** Failed */
|
2288
2325
|
Failed = "Failed"
|
2289
2326
|
}
|
2290
2327
|
|
2291
2328
|
/** Known values of {@link CommandType} that the service accepts. */
|
2292
2329
|
export declare enum KnownCommandType {
|
2330
|
+
/** MigrateSyncCompleteDatabase */
|
2293
2331
|
MigrateSyncCompleteDatabase = "Migrate.Sync.Complete.Database",
|
2332
|
+
/** MigrateSqlServerAzureDbSqlMiComplete */
|
2294
2333
|
MigrateSqlServerAzureDbSqlMiComplete = "Migrate.SqlServer.AzureDbSqlMi.Complete",
|
2334
|
+
/** Cancel */
|
2295
2335
|
Cancel = "cancel",
|
2336
|
+
/** Finish */
|
2296
2337
|
Finish = "finish",
|
2338
|
+
/** Restart */
|
2297
2339
|
Restart = "restart"
|
2298
2340
|
}
|
2299
2341
|
|
2300
2342
|
/** Known values of {@link CreatedByType} that the service accepts. */
|
2301
2343
|
export declare enum KnownCreatedByType {
|
2344
|
+
/** User */
|
2302
2345
|
User = "User",
|
2346
|
+
/** Application */
|
2303
2347
|
Application = "Application",
|
2348
|
+
/** ManagedIdentity */
|
2304
2349
|
ManagedIdentity = "ManagedIdentity",
|
2350
|
+
/** Key */
|
2305
2351
|
Key = "Key"
|
2306
2352
|
}
|
2307
2353
|
|
2308
2354
|
/** Known values of {@link DatabaseCompatLevel} that the service accepts. */
|
2309
2355
|
export declare enum KnownDatabaseCompatLevel {
|
2356
|
+
/** CompatLevel80 */
|
2310
2357
|
CompatLevel80 = "CompatLevel80",
|
2358
|
+
/** CompatLevel90 */
|
2311
2359
|
CompatLevel90 = "CompatLevel90",
|
2360
|
+
/** CompatLevel100 */
|
2312
2361
|
CompatLevel100 = "CompatLevel100",
|
2362
|
+
/** CompatLevel110 */
|
2313
2363
|
CompatLevel110 = "CompatLevel110",
|
2364
|
+
/** CompatLevel120 */
|
2314
2365
|
CompatLevel120 = "CompatLevel120",
|
2366
|
+
/** CompatLevel130 */
|
2315
2367
|
CompatLevel130 = "CompatLevel130",
|
2368
|
+
/** CompatLevel140 */
|
2316
2369
|
CompatLevel140 = "CompatLevel140"
|
2317
2370
|
}
|
2318
2371
|
|
2319
2372
|
/** Known values of {@link DatabaseFileType} that the service accepts. */
|
2320
2373
|
export declare enum KnownDatabaseFileType {
|
2374
|
+
/** Rows */
|
2321
2375
|
Rows = "Rows",
|
2376
|
+
/** Log */
|
2322
2377
|
Log = "Log",
|
2378
|
+
/** Filestream */
|
2323
2379
|
Filestream = "Filestream",
|
2380
|
+
/** NotSupported */
|
2324
2381
|
NotSupported = "NotSupported",
|
2382
|
+
/** Fulltext */
|
2325
2383
|
Fulltext = "Fulltext"
|
2326
2384
|
}
|
2327
2385
|
|
2328
2386
|
/** Known values of {@link DatabaseMigrationStage} that the service accepts. */
|
2329
2387
|
export declare enum KnownDatabaseMigrationStage {
|
2388
|
+
/** None */
|
2330
2389
|
None = "None",
|
2390
|
+
/** Initialize */
|
2331
2391
|
Initialize = "Initialize",
|
2392
|
+
/** Backup */
|
2332
2393
|
Backup = "Backup",
|
2394
|
+
/** FileCopy */
|
2333
2395
|
FileCopy = "FileCopy",
|
2396
|
+
/** Restore */
|
2334
2397
|
Restore = "Restore",
|
2398
|
+
/** Completed */
|
2335
2399
|
Completed = "Completed"
|
2336
2400
|
}
|
2337
2401
|
|
2338
2402
|
/** Known values of {@link DatabaseMigrationState} that the service accepts. */
|
2339
2403
|
export declare enum KnownDatabaseMigrationState {
|
2404
|
+
/** Undefined */
|
2340
2405
|
Undefined = "UNDEFINED",
|
2406
|
+
/** Initial */
|
2341
2407
|
Initial = "INITIAL",
|
2408
|
+
/** FullBackupUploadStart */
|
2342
2409
|
FullBackupUploadStart = "FULL_BACKUP_UPLOAD_START",
|
2410
|
+
/** LOGShippingStart */
|
2343
2411
|
LOGShippingStart = "LOG_SHIPPING_START",
|
2412
|
+
/** UploadLOGFilesStart */
|
2344
2413
|
UploadLOGFilesStart = "UPLOAD_LOG_FILES_START",
|
2414
|
+
/** CutoverStart */
|
2345
2415
|
CutoverStart = "CUTOVER_START",
|
2416
|
+
/** PostCutoverComplete */
|
2346
2417
|
PostCutoverComplete = "POST_CUTOVER_COMPLETE",
|
2418
|
+
/** Completed */
|
2347
2419
|
Completed = "COMPLETED",
|
2420
|
+
/** Cancelled */
|
2348
2421
|
Cancelled = "CANCELLED",
|
2422
|
+
/** Failed */
|
2349
2423
|
Failed = "FAILED"
|
2350
2424
|
}
|
2351
2425
|
|
2352
2426
|
/** Known values of {@link DatabaseState} that the service accepts. */
|
2353
2427
|
export declare enum KnownDatabaseState {
|
2428
|
+
/** Online */
|
2354
2429
|
Online = "Online",
|
2430
|
+
/** Restoring */
|
2355
2431
|
Restoring = "Restoring",
|
2432
|
+
/** Recovering */
|
2356
2433
|
Recovering = "Recovering",
|
2434
|
+
/** RecoveryPending */
|
2357
2435
|
RecoveryPending = "RecoveryPending",
|
2436
|
+
/** Suspect */
|
2358
2437
|
Suspect = "Suspect",
|
2438
|
+
/** Emergency */
|
2359
2439
|
Emergency = "Emergency",
|
2440
|
+
/** Offline */
|
2360
2441
|
Offline = "Offline",
|
2442
|
+
/** Copying */
|
2361
2443
|
Copying = "Copying",
|
2444
|
+
/** OfflineSecondary */
|
2362
2445
|
OfflineSecondary = "OfflineSecondary"
|
2363
2446
|
}
|
2364
2447
|
|
2365
2448
|
/** Known values of {@link DataMigrationResultCode} that the service accepts. */
|
2366
2449
|
export declare enum KnownDataMigrationResultCode {
|
2450
|
+
/** Initial */
|
2367
2451
|
Initial = "Initial",
|
2452
|
+
/** Completed */
|
2368
2453
|
Completed = "Completed",
|
2454
|
+
/** ObjectNotExistsInSource */
|
2369
2455
|
ObjectNotExistsInSource = "ObjectNotExistsInSource",
|
2456
|
+
/** ObjectNotExistsInTarget */
|
2370
2457
|
ObjectNotExistsInTarget = "ObjectNotExistsInTarget",
|
2458
|
+
/** TargetObjectIsInaccessible */
|
2371
2459
|
TargetObjectIsInaccessible = "TargetObjectIsInaccessible",
|
2460
|
+
/** FatalError */
|
2372
2461
|
FatalError = "FatalError"
|
2373
2462
|
}
|
2374
2463
|
|
2375
2464
|
/** Known values of {@link ErrorType} that the service accepts. */
|
2376
2465
|
export declare enum KnownErrorType {
|
2466
|
+
/** Default */
|
2377
2467
|
Default = "Default",
|
2468
|
+
/** Warning */
|
2378
2469
|
Warning = "Warning",
|
2470
|
+
/** Error */
|
2379
2471
|
Error = "Error"
|
2380
2472
|
}
|
2381
2473
|
|
2382
2474
|
/** Known values of {@link LoginMigrationStage} that the service accepts. */
|
2383
2475
|
export declare enum KnownLoginMigrationStage {
|
2476
|
+
/** None */
|
2384
2477
|
None = "None",
|
2478
|
+
/** Initialize */
|
2385
2479
|
Initialize = "Initialize",
|
2480
|
+
/** LoginMigration */
|
2386
2481
|
LoginMigration = "LoginMigration",
|
2482
|
+
/** EstablishUserMapping */
|
2387
2483
|
EstablishUserMapping = "EstablishUserMapping",
|
2484
|
+
/** AssignRoleMembership */
|
2388
2485
|
AssignRoleMembership = "AssignRoleMembership",
|
2486
|
+
/** AssignRoleOwnership */
|
2389
2487
|
AssignRoleOwnership = "AssignRoleOwnership",
|
2488
|
+
/** EstablishServerPermissions */
|
2390
2489
|
EstablishServerPermissions = "EstablishServerPermissions",
|
2490
|
+
/** EstablishObjectPermissions */
|
2391
2491
|
EstablishObjectPermissions = "EstablishObjectPermissions",
|
2492
|
+
/** Completed */
|
2392
2493
|
Completed = "Completed"
|
2393
2494
|
}
|
2394
2495
|
|
2395
2496
|
/** Known values of {@link LoginType} that the service accepts. */
|
2396
2497
|
export declare enum KnownLoginType {
|
2498
|
+
/** WindowsUser */
|
2397
2499
|
WindowsUser = "WindowsUser",
|
2500
|
+
/** WindowsGroup */
|
2398
2501
|
WindowsGroup = "WindowsGroup",
|
2502
|
+
/** SqlLogin */
|
2399
2503
|
SqlLogin = "SqlLogin",
|
2504
|
+
/** Certificate */
|
2400
2505
|
Certificate = "Certificate",
|
2506
|
+
/** AsymmetricKey */
|
2401
2507
|
AsymmetricKey = "AsymmetricKey",
|
2508
|
+
/** ExternalUser */
|
2402
2509
|
ExternalUser = "ExternalUser",
|
2510
|
+
/** ExternalGroup */
|
2403
2511
|
ExternalGroup = "ExternalGroup"
|
2404
2512
|
}
|
2405
2513
|
|
2406
2514
|
/** Known values of {@link MigrationState} that the service accepts. */
|
2407
2515
|
export declare enum KnownMigrationState {
|
2516
|
+
/** None */
|
2408
2517
|
None = "None",
|
2518
|
+
/** InProgress */
|
2409
2519
|
InProgress = "InProgress",
|
2520
|
+
/** Failed */
|
2410
2521
|
Failed = "Failed",
|
2522
|
+
/** Warning */
|
2411
2523
|
Warning = "Warning",
|
2524
|
+
/** Completed */
|
2412
2525
|
Completed = "Completed",
|
2526
|
+
/** Skipped */
|
2413
2527
|
Skipped = "Skipped",
|
2528
|
+
/** Stopped */
|
2414
2529
|
Stopped = "Stopped"
|
2415
2530
|
}
|
2416
2531
|
|
2417
2532
|
/** Known values of {@link MigrationStatus} that the service accepts. */
|
2418
2533
|
export declare enum KnownMigrationStatus {
|
2534
|
+
/** Default */
|
2419
2535
|
Default = "Default",
|
2536
|
+
/** Connecting */
|
2420
2537
|
Connecting = "Connecting",
|
2538
|
+
/** SourceAndTargetSelected */
|
2421
2539
|
SourceAndTargetSelected = "SourceAndTargetSelected",
|
2540
|
+
/** SelectLogins */
|
2422
2541
|
SelectLogins = "SelectLogins",
|
2542
|
+
/** Configured */
|
2423
2543
|
Configured = "Configured",
|
2544
|
+
/** Running */
|
2424
2545
|
Running = "Running",
|
2546
|
+
/** Error */
|
2425
2547
|
Error = "Error",
|
2548
|
+
/** Stopped */
|
2426
2549
|
Stopped = "Stopped",
|
2550
|
+
/** Completed */
|
2427
2551
|
Completed = "Completed",
|
2552
|
+
/** CompletedWithWarnings */
|
2428
2553
|
CompletedWithWarnings = "CompletedWithWarnings"
|
2429
2554
|
}
|
2430
2555
|
|
2431
2556
|
/** Known values of {@link MongoDbClusterType} that the service accepts. */
|
2432
2557
|
export declare enum KnownMongoDbClusterType {
|
2558
|
+
/** BlobContainer */
|
2433
2559
|
BlobContainer = "BlobContainer",
|
2560
|
+
/** CosmosDb */
|
2434
2561
|
CosmosDb = "CosmosDb",
|
2562
|
+
/** MongoDb */
|
2435
2563
|
MongoDb = "MongoDb"
|
2436
2564
|
}
|
2437
2565
|
|
2438
2566
|
/** Known values of {@link MongoDbErrorType} that the service accepts. */
|
2439
2567
|
export declare enum KnownMongoDbErrorType {
|
2568
|
+
/** Error */
|
2440
2569
|
Error = "Error",
|
2570
|
+
/** ValidationError */
|
2441
2571
|
ValidationError = "ValidationError",
|
2572
|
+
/** Warning */
|
2442
2573
|
Warning = "Warning"
|
2443
2574
|
}
|
2444
2575
|
|
2445
2576
|
/** Known values of {@link MongoDbMigrationState} that the service accepts. */
|
2446
2577
|
export declare enum KnownMongoDbMigrationState {
|
2578
|
+
/** NotStarted */
|
2447
2579
|
NotStarted = "NotStarted",
|
2580
|
+
/** ValidatingInput */
|
2448
2581
|
ValidatingInput = "ValidatingInput",
|
2582
|
+
/** Initializing */
|
2449
2583
|
Initializing = "Initializing",
|
2584
|
+
/** Restarting */
|
2450
2585
|
Restarting = "Restarting",
|
2586
|
+
/** Copying */
|
2451
2587
|
Copying = "Copying",
|
2588
|
+
/** InitialReplay */
|
2452
2589
|
InitialReplay = "InitialReplay",
|
2590
|
+
/** Replaying */
|
2453
2591
|
Replaying = "Replaying",
|
2592
|
+
/** Finalizing */
|
2454
2593
|
Finalizing = "Finalizing",
|
2594
|
+
/** Complete */
|
2455
2595
|
Complete = "Complete",
|
2596
|
+
/** Canceled */
|
2456
2597
|
Canceled = "Canceled",
|
2598
|
+
/** Failed */
|
2457
2599
|
Failed = "Failed"
|
2458
2600
|
}
|
2459
2601
|
|
2460
2602
|
/** Known values of {@link MongoDbProgressResultType} that the service accepts. */
|
2461
2603
|
export declare enum KnownMongoDbProgressResultType {
|
2604
|
+
/** Migration */
|
2462
2605
|
Migration = "Migration",
|
2606
|
+
/** Database */
|
2463
2607
|
Database = "Database",
|
2608
|
+
/** Collection */
|
2464
2609
|
Collection = "Collection"
|
2465
2610
|
}
|
2466
2611
|
|
2467
2612
|
/** Known values of {@link MongoDbReplication} that the service accepts. */
|
2468
2613
|
export declare enum KnownMongoDbReplication {
|
2614
|
+
/** Disabled */
|
2469
2615
|
Disabled = "Disabled",
|
2616
|
+
/** OneTime */
|
2470
2617
|
OneTime = "OneTime",
|
2618
|
+
/** Continuous */
|
2471
2619
|
Continuous = "Continuous"
|
2472
2620
|
}
|
2473
2621
|
|
2474
2622
|
/** Known values of {@link MongoDbShardKeyOrder} that the service accepts. */
|
2475
2623
|
export declare enum KnownMongoDbShardKeyOrder {
|
2624
|
+
/** Forward */
|
2476
2625
|
Forward = "Forward",
|
2626
|
+
/** Reverse */
|
2477
2627
|
Reverse = "Reverse",
|
2628
|
+
/** Hashed */
|
2478
2629
|
Hashed = "Hashed"
|
2479
2630
|
}
|
2480
2631
|
|
2481
2632
|
/** Known values of {@link MySqlTargetPlatformType} that the service accepts. */
|
2482
2633
|
export declare enum KnownMySqlTargetPlatformType {
|
2634
|
+
/** SqlServer */
|
2483
2635
|
SqlServer = "SqlServer",
|
2636
|
+
/** AzureDbForMySQL */
|
2484
2637
|
AzureDbForMySQL = "AzureDbForMySQL"
|
2485
2638
|
}
|
2486
2639
|
|
2487
2640
|
/** Known values of {@link NameCheckFailureReason} that the service accepts. */
|
2488
2641
|
export declare enum KnownNameCheckFailureReason {
|
2642
|
+
/** AlreadyExists */
|
2489
2643
|
AlreadyExists = "AlreadyExists",
|
2644
|
+
/** Invalid */
|
2490
2645
|
Invalid = "Invalid"
|
2491
2646
|
}
|
2492
2647
|
|
2493
2648
|
/** Known values of {@link ObjectType} that the service accepts. */
|
2494
2649
|
export declare enum KnownObjectType {
|
2650
|
+
/** StoredProcedures */
|
2495
2651
|
StoredProcedures = "StoredProcedures",
|
2652
|
+
/** Table */
|
2496
2653
|
Table = "Table",
|
2654
|
+
/** User */
|
2497
2655
|
User = "User",
|
2656
|
+
/** View */
|
2498
2657
|
View = "View",
|
2658
|
+
/** Function */
|
2499
2659
|
Function = "Function"
|
2500
2660
|
}
|
2501
2661
|
|
2502
2662
|
/** Known values of {@link OperationOrigin} that the service accepts. */
|
2503
2663
|
export declare enum KnownOperationOrigin {
|
2664
|
+
/** User */
|
2504
2665
|
User = "user",
|
2666
|
+
/** System */
|
2505
2667
|
System = "system"
|
2506
2668
|
}
|
2507
2669
|
|
2508
2670
|
/** Known values of {@link ProjectProvisioningState} that the service accepts. */
|
2509
2671
|
export declare enum KnownProjectProvisioningState {
|
2672
|
+
/** Deleting */
|
2510
2673
|
Deleting = "Deleting",
|
2674
|
+
/** Succeeded */
|
2511
2675
|
Succeeded = "Succeeded"
|
2512
2676
|
}
|
2513
2677
|
|
2514
2678
|
/** Known values of {@link ProjectSourcePlatform} that the service accepts. */
|
2515
2679
|
export declare enum KnownProjectSourcePlatform {
|
2680
|
+
/** SQL */
|
2516
2681
|
SQL = "SQL",
|
2682
|
+
/** MySQL */
|
2517
2683
|
MySQL = "MySQL",
|
2684
|
+
/** PostgreSql */
|
2518
2685
|
PostgreSql = "PostgreSql",
|
2686
|
+
/** MongoDb */
|
2519
2687
|
MongoDb = "MongoDb",
|
2688
|
+
/** Unknown */
|
2520
2689
|
Unknown = "Unknown"
|
2521
2690
|
}
|
2522
2691
|
|
2523
2692
|
/** Known values of {@link ProjectTargetPlatform} that the service accepts. */
|
2524
2693
|
export declare enum KnownProjectTargetPlatform {
|
2694
|
+
/** Sqldb */
|
2525
2695
|
Sqldb = "SQLDB",
|
2696
|
+
/** Sqlmi */
|
2526
2697
|
Sqlmi = "SQLMI",
|
2698
|
+
/** AzureDbForMySql */
|
2527
2699
|
AzureDbForMySql = "AzureDbForMySql",
|
2700
|
+
/** AzureDbForPostgreSql */
|
2528
2701
|
AzureDbForPostgreSql = "AzureDbForPostgreSql",
|
2702
|
+
/** MongoDb */
|
2529
2703
|
MongoDb = "MongoDb",
|
2704
|
+
/** Unknown */
|
2530
2705
|
Unknown = "Unknown"
|
2531
2706
|
}
|
2532
2707
|
|
2533
2708
|
/** Known values of {@link ReplicateMigrationState} that the service accepts. */
|
2534
2709
|
export declare enum KnownReplicateMigrationState {
|
2710
|
+
/** Undefined */
|
2535
2711
|
Undefined = "UNDEFINED",
|
2712
|
+
/** Validating */
|
2536
2713
|
Validating = "VALIDATING",
|
2714
|
+
/** Pending */
|
2537
2715
|
Pending = "PENDING",
|
2716
|
+
/** Complete */
|
2538
2717
|
Complete = "COMPLETE",
|
2718
|
+
/** ActionRequired */
|
2539
2719
|
ActionRequired = "ACTION_REQUIRED",
|
2720
|
+
/** Failed */
|
2540
2721
|
Failed = "FAILED"
|
2541
2722
|
}
|
2542
2723
|
|
2543
2724
|
/** Known values of {@link ResourceSkuCapacityScaleType} that the service accepts. */
|
2544
2725
|
export declare enum KnownResourceSkuCapacityScaleType {
|
2726
|
+
/** Automatic */
|
2545
2727
|
Automatic = "Automatic",
|
2728
|
+
/** Manual */
|
2546
2729
|
Manual = "Manual",
|
2730
|
+
/** None */
|
2547
2731
|
None = "None"
|
2548
2732
|
}
|
2549
2733
|
|
2550
2734
|
/** Known values of {@link ResourceSkuRestrictionsReasonCode} that the service accepts. */
|
2551
2735
|
export declare enum KnownResourceSkuRestrictionsReasonCode {
|
2736
|
+
/** QuotaId */
|
2552
2737
|
QuotaId = "QuotaId",
|
2738
|
+
/** NotAvailableForSubscription */
|
2553
2739
|
NotAvailableForSubscription = "NotAvailableForSubscription"
|
2554
2740
|
}
|
2555
2741
|
|
2556
2742
|
/** Known values of {@link ResourceSkuRestrictionsType} that the service accepts. */
|
2557
2743
|
export declare enum KnownResourceSkuRestrictionsType {
|
2744
|
+
/** Location */
|
2558
2745
|
Location = "location"
|
2559
2746
|
}
|
2560
2747
|
|
2561
2748
|
/** Known values of {@link ResourceType} that the service accepts. */
|
2562
2749
|
export declare enum KnownResourceType {
|
2750
|
+
/** SqlMi */
|
2563
2751
|
SqlMi = "SqlMi",
|
2752
|
+
/** SqlVm */
|
2564
2753
|
SqlVm = "SqlVm"
|
2565
2754
|
}
|
2566
2755
|
|
2567
2756
|
/** Known values of {@link ScenarioSource} that the service accepts. */
|
2568
2757
|
export declare enum KnownScenarioSource {
|
2758
|
+
/** Access */
|
2569
2759
|
Access = "Access",
|
2760
|
+
/** DB2 */
|
2570
2761
|
DB2 = "DB2",
|
2762
|
+
/** MySQL */
|
2571
2763
|
MySQL = "MySQL",
|
2764
|
+
/** Oracle */
|
2572
2765
|
Oracle = "Oracle",
|
2766
|
+
/** SQL */
|
2573
2767
|
SQL = "SQL",
|
2768
|
+
/** Sybase */
|
2574
2769
|
Sybase = "Sybase",
|
2770
|
+
/** PostgreSQL */
|
2575
2771
|
PostgreSQL = "PostgreSQL",
|
2772
|
+
/** MongoDB */
|
2576
2773
|
MongoDB = "MongoDB",
|
2774
|
+
/** Sqlrds */
|
2577
2775
|
Sqlrds = "SQLRDS",
|
2776
|
+
/** MySqlrds */
|
2578
2777
|
MySqlrds = "MySQLRDS",
|
2778
|
+
/** PostgreSqlrds */
|
2579
2779
|
PostgreSqlrds = "PostgreSQLRDS"
|
2580
2780
|
}
|
2581
2781
|
|
2582
2782
|
/** Known values of {@link ScenarioTarget} that the service accepts. */
|
2583
2783
|
export declare enum KnownScenarioTarget {
|
2784
|
+
/** SQLServer */
|
2584
2785
|
SQLServer = "SQLServer",
|
2786
|
+
/** Sqldb */
|
2585
2787
|
Sqldb = "SQLDB",
|
2788
|
+
/** Sqldw */
|
2586
2789
|
Sqldw = "SQLDW",
|
2790
|
+
/** Sqlmi */
|
2587
2791
|
Sqlmi = "SQLMI",
|
2792
|
+
/** AzureDBForMySql */
|
2588
2793
|
AzureDBForMySql = "AzureDBForMySql",
|
2794
|
+
/** AzureDBForPostgresSQL */
|
2589
2795
|
AzureDBForPostgresSQL = "AzureDBForPostgresSQL",
|
2796
|
+
/** MongoDB */
|
2590
2797
|
MongoDB = "MongoDB"
|
2591
2798
|
}
|
2592
2799
|
|
2593
2800
|
/** Known values of {@link SchemaMigrationOption} that the service accepts. */
|
2594
2801
|
export declare enum KnownSchemaMigrationOption {
|
2802
|
+
/** None */
|
2595
2803
|
None = "None",
|
2804
|
+
/** ExtractFromSource */
|
2596
2805
|
ExtractFromSource = "ExtractFromSource",
|
2806
|
+
/** UseStorageFile */
|
2597
2807
|
UseStorageFile = "UseStorageFile"
|
2598
2808
|
}
|
2599
2809
|
|
2600
2810
|
/** Known values of {@link SchemaMigrationStage} that the service accepts. */
|
2601
2811
|
export declare enum KnownSchemaMigrationStage {
|
2812
|
+
/** NotStarted */
|
2602
2813
|
NotStarted = "NotStarted",
|
2814
|
+
/** ValidatingInputs */
|
2603
2815
|
ValidatingInputs = "ValidatingInputs",
|
2816
|
+
/** CollectingObjects */
|
2604
2817
|
CollectingObjects = "CollectingObjects",
|
2818
|
+
/** DownloadingScript */
|
2605
2819
|
DownloadingScript = "DownloadingScript",
|
2820
|
+
/** GeneratingScript */
|
2606
2821
|
GeneratingScript = "GeneratingScript",
|
2822
|
+
/** UploadingScript */
|
2607
2823
|
UploadingScript = "UploadingScript",
|
2824
|
+
/** DeployingSchema */
|
2608
2825
|
DeployingSchema = "DeployingSchema",
|
2826
|
+
/** Completed */
|
2609
2827
|
Completed = "Completed",
|
2828
|
+
/** CompletedWithWarnings */
|
2610
2829
|
CompletedWithWarnings = "CompletedWithWarnings",
|
2830
|
+
/** Failed */
|
2611
2831
|
Failed = "Failed"
|
2612
2832
|
}
|
2613
2833
|
|
2614
2834
|
/** Known values of {@link ServiceProvisioningState} that the service accepts. */
|
2615
2835
|
export declare enum KnownServiceProvisioningState {
|
2836
|
+
/** Accepted */
|
2616
2837
|
Accepted = "Accepted",
|
2838
|
+
/** Deleting */
|
2617
2839
|
Deleting = "Deleting",
|
2840
|
+
/** Deploying */
|
2618
2841
|
Deploying = "Deploying",
|
2842
|
+
/** Stopped */
|
2619
2843
|
Stopped = "Stopped",
|
2844
|
+
/** Stopping */
|
2620
2845
|
Stopping = "Stopping",
|
2846
|
+
/** Starting */
|
2621
2847
|
Starting = "Starting",
|
2848
|
+
/** FailedToStart */
|
2622
2849
|
FailedToStart = "FailedToStart",
|
2850
|
+
/** FailedToStop */
|
2623
2851
|
FailedToStop = "FailedToStop",
|
2852
|
+
/** Succeeded */
|
2624
2853
|
Succeeded = "Succeeded",
|
2854
|
+
/** Failed */
|
2625
2855
|
Failed = "Failed"
|
2626
2856
|
}
|
2627
2857
|
|
2628
2858
|
/** Known values of {@link ServiceScalability} that the service accepts. */
|
2629
2859
|
export declare enum KnownServiceScalability {
|
2860
|
+
/** None */
|
2630
2861
|
None = "none",
|
2862
|
+
/** Manual */
|
2631
2863
|
Manual = "manual",
|
2864
|
+
/** Automatic */
|
2632
2865
|
Automatic = "automatic"
|
2633
2866
|
}
|
2634
2867
|
|
2635
2868
|
/** Known values of {@link Severity} that the service accepts. */
|
2636
2869
|
export declare enum KnownSeverity {
|
2870
|
+
/** Message */
|
2637
2871
|
Message = "Message",
|
2872
|
+
/** Warning */
|
2638
2873
|
Warning = "Warning",
|
2874
|
+
/** Error */
|
2639
2875
|
Error = "Error"
|
2640
2876
|
}
|
2641
2877
|
|
2642
2878
|
/** Known values of {@link SqlSourcePlatform} that the service accepts. */
|
2643
2879
|
export declare enum KnownSqlSourcePlatform {
|
2880
|
+
/** SqlOnPrem */
|
2644
2881
|
SqlOnPrem = "SqlOnPrem"
|
2645
2882
|
}
|
2646
2883
|
|
2647
2884
|
/** Known values of {@link SsisMigrationOverwriteOption} that the service accepts. */
|
2648
2885
|
export declare enum KnownSsisMigrationOverwriteOption {
|
2886
|
+
/** Ignore */
|
2649
2887
|
Ignore = "Ignore",
|
2888
|
+
/** Overwrite */
|
2650
2889
|
Overwrite = "Overwrite"
|
2651
2890
|
}
|
2652
2891
|
|
2653
2892
|
/** Known values of {@link SsisMigrationStage} that the service accepts. */
|
2654
2893
|
export declare enum KnownSsisMigrationStage {
|
2894
|
+
/** None */
|
2655
2895
|
None = "None",
|
2896
|
+
/** Initialize */
|
2656
2897
|
Initialize = "Initialize",
|
2898
|
+
/** InProgress */
|
2657
2899
|
InProgress = "InProgress",
|
2900
|
+
/** Completed */
|
2658
2901
|
Completed = "Completed"
|
2659
2902
|
}
|
2660
2903
|
|
2661
2904
|
/** Known values of {@link SsisStoreType} that the service accepts. */
|
2662
2905
|
export declare enum KnownSsisStoreType {
|
2906
|
+
/** SsisCatalog */
|
2663
2907
|
SsisCatalog = "SsisCatalog"
|
2664
2908
|
}
|
2665
2909
|
|
2666
2910
|
/** Known values of {@link SyncDatabaseMigrationReportingState} that the service accepts. */
|
2667
2911
|
export declare enum KnownSyncDatabaseMigrationReportingState {
|
2912
|
+
/** Undefined */
|
2668
2913
|
Undefined = "UNDEFINED",
|
2914
|
+
/** Configuring */
|
2669
2915
|
Configuring = "CONFIGURING",
|
2916
|
+
/** Initialiazing */
|
2670
2917
|
Initialiazing = "INITIALIAZING",
|
2918
|
+
/** Starting */
|
2671
2919
|
Starting = "STARTING",
|
2920
|
+
/** Running */
|
2672
2921
|
Running = "RUNNING",
|
2922
|
+
/** ReadyTOComplete */
|
2673
2923
|
ReadyTOComplete = "READY_TO_COMPLETE",
|
2924
|
+
/** Completing */
|
2674
2925
|
Completing = "COMPLETING",
|
2926
|
+
/** Complete */
|
2675
2927
|
Complete = "COMPLETE",
|
2928
|
+
/** Cancelling */
|
2676
2929
|
Cancelling = "CANCELLING",
|
2930
|
+
/** Cancelled */
|
2677
2931
|
Cancelled = "CANCELLED",
|
2932
|
+
/** Failed */
|
2678
2933
|
Failed = "FAILED",
|
2934
|
+
/** Validating */
|
2679
2935
|
Validating = "VALIDATING",
|
2936
|
+
/** ValidationComplete */
|
2680
2937
|
ValidationComplete = "VALIDATION_COMPLETE",
|
2938
|
+
/** ValidationFailed */
|
2681
2939
|
ValidationFailed = "VALIDATION_FAILED",
|
2940
|
+
/** RestoreINProgress */
|
2682
2941
|
RestoreINProgress = "RESTORE_IN_PROGRESS",
|
2942
|
+
/** RestoreCompleted */
|
2683
2943
|
RestoreCompleted = "RESTORE_COMPLETED",
|
2944
|
+
/** BackupINProgress */
|
2684
2945
|
BackupINProgress = "BACKUP_IN_PROGRESS",
|
2946
|
+
/** BackupCompleted */
|
2685
2947
|
BackupCompleted = "BACKUP_COMPLETED"
|
2686
2948
|
}
|
2687
2949
|
|
2688
2950
|
/** Known values of {@link SyncTableMigrationState} that the service accepts. */
|
2689
2951
|
export declare enum KnownSyncTableMigrationState {
|
2952
|
+
/** BeforeLoad */
|
2690
2953
|
BeforeLoad = "BEFORE_LOAD",
|
2954
|
+
/** FullLoad */
|
2691
2955
|
FullLoad = "FULL_LOAD",
|
2956
|
+
/** Completed */
|
2692
2957
|
Completed = "COMPLETED",
|
2958
|
+
/** Canceled */
|
2693
2959
|
Canceled = "CANCELED",
|
2960
|
+
/** Error */
|
2694
2961
|
Error = "ERROR",
|
2962
|
+
/** Failed */
|
2695
2963
|
Failed = "FAILED"
|
2696
2964
|
}
|
2697
2965
|
|
2698
2966
|
/** Known values of {@link TaskState} that the service accepts. */
|
2699
2967
|
export declare enum KnownTaskState {
|
2968
|
+
/** Unknown */
|
2700
2969
|
Unknown = "Unknown",
|
2970
|
+
/** Queued */
|
2701
2971
|
Queued = "Queued",
|
2972
|
+
/** Running */
|
2702
2973
|
Running = "Running",
|
2974
|
+
/** Canceled */
|
2703
2975
|
Canceled = "Canceled",
|
2976
|
+
/** Succeeded */
|
2704
2977
|
Succeeded = "Succeeded",
|
2978
|
+
/** Failed */
|
2705
2979
|
Failed = "Failed",
|
2980
|
+
/** FailedInputValidation */
|
2706
2981
|
FailedInputValidation = "FailedInputValidation",
|
2982
|
+
/** Faulted */
|
2707
2983
|
Faulted = "Faulted"
|
2708
2984
|
}
|
2709
2985
|
|
2710
2986
|
/** Known values of {@link TaskType} that the service accepts. */
|
2711
2987
|
export declare enum KnownTaskType {
|
2988
|
+
/** ConnectMongoDb */
|
2712
2989
|
ConnectMongoDb = "Connect.MongoDb",
|
2990
|
+
/** ConnectToSourceSqlServer */
|
2713
2991
|
ConnectToSourceSqlServer = "ConnectToSource.SqlServer",
|
2992
|
+
/** ConnectToSourceSqlServerSync */
|
2714
2993
|
ConnectToSourceSqlServerSync = "ConnectToSource.SqlServer.Sync",
|
2994
|
+
/** ConnectToSourcePostgreSqlSync */
|
2715
2995
|
ConnectToSourcePostgreSqlSync = "ConnectToSource.PostgreSql.Sync",
|
2996
|
+
/** ConnectToSourceMySql */
|
2716
2997
|
ConnectToSourceMySql = "ConnectToSource.MySql",
|
2998
|
+
/** ConnectToSourceOracleSync */
|
2717
2999
|
ConnectToSourceOracleSync = "ConnectToSource.Oracle.Sync",
|
3000
|
+
/** ConnectToTargetSqlDb */
|
2718
3001
|
ConnectToTargetSqlDb = "ConnectToTarget.SqlDb",
|
3002
|
+
/** ConnectToTargetSqlDbSync */
|
2719
3003
|
ConnectToTargetSqlDbSync = "ConnectToTarget.SqlDb.Sync",
|
3004
|
+
/** ConnectToTargetAzureDbForPostgreSqlSync */
|
2720
3005
|
ConnectToTargetAzureDbForPostgreSqlSync = "ConnectToTarget.AzureDbForPostgreSql.Sync",
|
3006
|
+
/** ConnectToTargetOracleAzureDbForPostgreSqlSync */
|
2721
3007
|
ConnectToTargetOracleAzureDbForPostgreSqlSync = "ConnectToTarget.Oracle.AzureDbForPostgreSql.Sync",
|
3008
|
+
/** ConnectToTargetAzureSqlDbMI */
|
2722
3009
|
ConnectToTargetAzureSqlDbMI = "ConnectToTarget.AzureSqlDbMI",
|
3010
|
+
/** ConnectToTargetAzureSqlDbMISyncLRS */
|
2723
3011
|
ConnectToTargetAzureSqlDbMISyncLRS = "ConnectToTarget.AzureSqlDbMI.Sync.LRS",
|
3012
|
+
/** ConnectToTargetAzureDbForMySql */
|
2724
3013
|
ConnectToTargetAzureDbForMySql = "ConnectToTarget.AzureDbForMySql",
|
3014
|
+
/** GetUserTablesSql */
|
2725
3015
|
GetUserTablesSql = "GetUserTables.Sql",
|
3016
|
+
/** GetUserTablesAzureSqlDbSync */
|
2726
3017
|
GetUserTablesAzureSqlDbSync = "GetUserTables.AzureSqlDb.Sync",
|
3018
|
+
/** GetUserTablesOracle */
|
2727
3019
|
GetUserTablesOracle = "GetUserTablesOracle",
|
3020
|
+
/** GetUserTablesPostgreSql */
|
2728
3021
|
GetUserTablesPostgreSql = "GetUserTablesPostgreSql",
|
3022
|
+
/** GetUserTablesMySql */
|
2729
3023
|
GetUserTablesMySql = "GetUserTablesMySql",
|
3024
|
+
/** MigrateMongoDb */
|
2730
3025
|
MigrateMongoDb = "Migrate.MongoDb",
|
3026
|
+
/** MigrateSqlServerAzureSqlDbMI */
|
2731
3027
|
MigrateSqlServerAzureSqlDbMI = "Migrate.SqlServer.AzureSqlDbMI",
|
3028
|
+
/** MigrateSqlServerAzureSqlDbMISyncLRS */
|
2732
3029
|
MigrateSqlServerAzureSqlDbMISyncLRS = "Migrate.SqlServer.AzureSqlDbMI.Sync.LRS",
|
3030
|
+
/** MigrateSqlServerSqlDb */
|
2733
3031
|
MigrateSqlServerSqlDb = "Migrate.SqlServer.SqlDb",
|
3032
|
+
/** MigrateSqlServerAzureSqlDbSync */
|
2734
3033
|
MigrateSqlServerAzureSqlDbSync = "Migrate.SqlServer.AzureSqlDb.Sync",
|
3034
|
+
/** MigrateMySqlAzureDbForMySqlSync */
|
2735
3035
|
MigrateMySqlAzureDbForMySqlSync = "Migrate.MySql.AzureDbForMySql.Sync",
|
3036
|
+
/** MigrateMySqlAzureDbForMySql */
|
2736
3037
|
MigrateMySqlAzureDbForMySql = "Migrate.MySql.AzureDbForMySql",
|
3038
|
+
/** MigratePostgreSqlAzureDbForPostgreSqlSyncV2 */
|
2737
3039
|
MigratePostgreSqlAzureDbForPostgreSqlSyncV2 = "Migrate.PostgreSql.AzureDbForPostgreSql.SyncV2",
|
3040
|
+
/** MigrateOracleAzureDbForPostgreSqlSync */
|
2738
3041
|
MigrateOracleAzureDbForPostgreSqlSync = "Migrate.Oracle.AzureDbForPostgreSql.Sync",
|
3042
|
+
/** ValidateMigrationInputSqlServerSqlDbSync */
|
2739
3043
|
ValidateMigrationInputSqlServerSqlDbSync = "ValidateMigrationInput.SqlServer.SqlDb.Sync",
|
3044
|
+
/** ValidateMigrationInputSqlServerAzureSqlDbMI */
|
2740
3045
|
ValidateMigrationInputSqlServerAzureSqlDbMI = "ValidateMigrationInput.SqlServer.AzureSqlDbMI",
|
3046
|
+
/** ValidateMigrationInputSqlServerAzureSqlDbMISyncLRS */
|
2741
3047
|
ValidateMigrationInputSqlServerAzureSqlDbMISyncLRS = "ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS",
|
3048
|
+
/** ValidateMongoDb */
|
2742
3049
|
ValidateMongoDb = "Validate.MongoDb",
|
3050
|
+
/** ValidateOracleAzureDbPostgreSqlSync */
|
2743
3051
|
ValidateOracleAzureDbPostgreSqlSync = "Validate.Oracle.AzureDbPostgreSql.Sync",
|
3052
|
+
/** GetTDECertificatesSql */
|
2744
3053
|
GetTDECertificatesSql = "GetTDECertificates.Sql",
|
3054
|
+
/** MigrateSsis */
|
2745
3055
|
MigrateSsis = "Migrate.Ssis",
|
3056
|
+
/** ServiceCheckOCI */
|
2746
3057
|
ServiceCheckOCI = "Service.Check.OCI",
|
3058
|
+
/** ServiceUploadOCI */
|
2747
3059
|
ServiceUploadOCI = "Service.Upload.OCI",
|
3060
|
+
/** ServiceInstallOCI */
|
2748
3061
|
ServiceInstallOCI = "Service.Install.OCI",
|
3062
|
+
/** MigrateSchemaSqlServerSqlDb */
|
2749
3063
|
MigrateSchemaSqlServerSqlDb = "MigrateSchemaSqlServerSqlDb"
|
2750
3064
|
}
|
2751
3065
|
|
2752
3066
|
/** Known values of {@link UpdateActionType} that the service accepts. */
|
2753
3067
|
export declare enum KnownUpdateActionType {
|
3068
|
+
/** DeletedOnTarget */
|
2754
3069
|
DeletedOnTarget = "DeletedOnTarget",
|
3070
|
+
/** ChangedOnTarget */
|
2755
3071
|
ChangedOnTarget = "ChangedOnTarget",
|
3072
|
+
/** AddedOnTarget */
|
2756
3073
|
AddedOnTarget = "AddedOnTarget"
|
2757
3074
|
}
|
2758
3075
|
|
2759
3076
|
/** Known values of {@link ValidationStatus} that the service accepts. */
|
2760
3077
|
export declare enum KnownValidationStatus {
|
3078
|
+
/** Default */
|
2761
3079
|
Default = "Default",
|
3080
|
+
/** NotStarted */
|
2762
3081
|
NotStarted = "NotStarted",
|
3082
|
+
/** Initialized */
|
2763
3083
|
Initialized = "Initialized",
|
3084
|
+
/** InProgress */
|
2764
3085
|
InProgress = "InProgress",
|
3086
|
+
/** Completed */
|
2765
3087
|
Completed = "Completed",
|
3088
|
+
/** CompletedWithIssues */
|
2766
3089
|
CompletedWithIssues = "CompletedWithIssues",
|
3090
|
+
/** Stopped */
|
2767
3091
|
Stopped = "Stopped",
|
3092
|
+
/** Failed */
|
2768
3093
|
Failed = "Failed"
|
2769
3094
|
}
|
2770
3095
|
|
@@ -2813,7 +3138,7 @@ export declare interface MigrateMISyncCompleteCommandOutput {
|
|
2813
3138
|
}
|
2814
3139
|
|
2815
3140
|
/** Properties for the command that completes online migration for an Azure SQL Database Managed Instance. */
|
2816
|
-
export declare
|
3141
|
+
export declare interface MigrateMISyncCompleteCommandProperties extends CommandProperties {
|
2817
3142
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2818
3143
|
commandType: "Migrate.SqlServer.AzureDbSqlMi.Complete";
|
2819
3144
|
/** Command input */
|
@@ -2823,17 +3148,17 @@ export declare type MigrateMISyncCompleteCommandProperties = CommandProperties &
|
|
2823
3148
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2824
3149
|
*/
|
2825
3150
|
readonly output?: MigrateMISyncCompleteCommandOutput;
|
2826
|
-
}
|
3151
|
+
}
|
2827
3152
|
|
2828
3153
|
/** Properties for the task that migrates data between MongoDB data sources */
|
2829
|
-
export declare
|
3154
|
+
export declare interface MigrateMongoDbTaskProperties extends ProjectTaskProperties {
|
2830
3155
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2831
3156
|
taskType: "Migrate.MongoDb";
|
2832
3157
|
/** Describes how a MongoDB data migration should be performed */
|
2833
3158
|
input?: MongoDbMigrationSettings;
|
2834
3159
|
/** NOTE: This property will not be serialized. It can only be populated by the server. */
|
2835
3160
|
readonly output?: MongoDbProgressUnion[];
|
2836
|
-
}
|
3161
|
+
}
|
2837
3162
|
|
2838
3163
|
/** Database specific information for offline MySQL to Azure Database for MySQL migration task inputs */
|
2839
3164
|
export declare interface MigrateMySqlAzureDbForMySqlOfflineDatabaseInput {
|
@@ -2876,7 +3201,7 @@ export declare interface MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
|
2876
3201
|
readonly id?: string;
|
2877
3202
|
}
|
2878
3203
|
|
2879
|
-
export declare
|
3204
|
+
export declare interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
2880
3205
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2881
3206
|
resultType: "DatabaseLevelOutput";
|
2882
3207
|
/**
|
@@ -2954,9 +3279,9 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel =
|
|
2954
3279
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2955
3280
|
*/
|
2956
3281
|
readonly objectSummary?: string;
|
2957
|
-
}
|
3282
|
+
}
|
2958
3283
|
|
2959
|
-
export declare
|
3284
|
+
export declare interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputError extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
2960
3285
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2961
3286
|
resultType: "ErrorOutput";
|
2962
3287
|
/**
|
@@ -2964,9 +3289,9 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputError = MigrateM
|
|
2964
3289
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
2965
3290
|
*/
|
2966
3291
|
readonly error?: ReportableException;
|
2967
|
-
}
|
3292
|
+
}
|
2968
3293
|
|
2969
|
-
export declare
|
3294
|
+
export declare interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
2970
3295
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
2971
3296
|
resultType: "MigrationLevelOutput";
|
2972
3297
|
/**
|
@@ -3038,9 +3363,9 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel =
|
|
3038
3363
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3039
3364
|
*/
|
3040
3365
|
readonly lastStorageUpdate?: Date;
|
3041
|
-
}
|
3366
|
+
}
|
3042
3367
|
|
3043
|
-
export declare
|
3368
|
+
export declare interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
|
3044
3369
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3045
3370
|
resultType: "TableLevelOutput";
|
3046
3371
|
/**
|
@@ -3093,12 +3418,12 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel = Mig
|
|
3093
3418
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3094
3419
|
*/
|
3095
3420
|
readonly lastStorageUpdate?: Date;
|
3096
|
-
}
|
3421
|
+
}
|
3097
3422
|
|
3098
3423
|
export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputUnion = MigrateMySqlAzureDbForMySqlOfflineTaskOutput | MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel | MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel | MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel | MigrateMySqlAzureDbForMySqlOfflineTaskOutputError;
|
3099
3424
|
|
3100
3425
|
/** Properties for the task that migrates MySQL databases to Azure Database for MySQL for offline migrations */
|
3101
|
-
export declare
|
3426
|
+
export declare interface MigrateMySqlAzureDbForMySqlOfflineTaskProperties extends ProjectTaskProperties {
|
3102
3427
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3103
3428
|
taskType: "Migrate.MySql.AzureDbForMySql";
|
3104
3429
|
/** Task input */
|
@@ -3108,7 +3433,7 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskProperties = ProjectTa
|
|
3108
3433
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3109
3434
|
*/
|
3110
3435
|
readonly output?: MigrateMySqlAzureDbForMySqlOfflineTaskOutputUnion[];
|
3111
|
-
}
|
3436
|
+
}
|
3112
3437
|
|
3113
3438
|
/** Database specific information for MySQL to Azure Database for MySQL migration task inputs */
|
3114
3439
|
export declare interface MigrateMySqlAzureDbForMySqlSyncDatabaseInput {
|
@@ -3155,16 +3480,16 @@ export declare interface MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
|
3155
3480
|
readonly id?: string;
|
3156
3481
|
}
|
3157
3482
|
|
3158
|
-
export declare
|
3483
|
+
export declare interface MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseError extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
3159
3484
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3160
3485
|
resultType: "DatabaseLevelErrorOutput";
|
3161
3486
|
/** Error message */
|
3162
3487
|
errorMessage?: string;
|
3163
3488
|
/** List of error events. */
|
3164
3489
|
events?: SyncMigrationDatabaseErrorEvent[];
|
3165
|
-
}
|
3490
|
+
}
|
3166
3491
|
|
3167
|
-
export declare
|
3492
|
+
export declare interface MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
3168
3493
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3169
3494
|
resultType: "DatabaseLevelOutput";
|
3170
3495
|
/**
|
@@ -3242,9 +3567,9 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel = Mig
|
|
3242
3567
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3243
3568
|
*/
|
3244
3569
|
readonly latency?: number;
|
3245
|
-
}
|
3570
|
+
}
|
3246
3571
|
|
3247
|
-
export declare
|
3572
|
+
export declare interface MigrateMySqlAzureDbForMySqlSyncTaskOutputError extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
3248
3573
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3249
3574
|
resultType: "ErrorOutput";
|
3250
3575
|
/**
|
@@ -3252,9 +3577,9 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputError = MigrateMySq
|
|
3252
3577
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3253
3578
|
*/
|
3254
3579
|
readonly error?: ReportableException;
|
3255
|
-
}
|
3580
|
+
}
|
3256
3581
|
|
3257
|
-
export declare
|
3582
|
+
export declare interface MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
3258
3583
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3259
3584
|
resultType: "MigrationLevelOutput";
|
3260
3585
|
/**
|
@@ -3287,9 +3612,9 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel = Mi
|
|
3287
3612
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3288
3613
|
*/
|
3289
3614
|
readonly targetServer?: string;
|
3290
|
-
}
|
3615
|
+
}
|
3291
3616
|
|
3292
|
-
export declare
|
3617
|
+
export declare interface MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
|
3293
3618
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3294
3619
|
resultType: "TableLevelOutput";
|
3295
3620
|
/**
|
@@ -3357,12 +3682,12 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel = Migrat
|
|
3357
3682
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3358
3683
|
*/
|
3359
3684
|
readonly lastModifiedTime?: Date;
|
3360
|
-
}
|
3685
|
+
}
|
3361
3686
|
|
3362
3687
|
export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputUnion = MigrateMySqlAzureDbForMySqlSyncTaskOutput | MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel | MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel | MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel | MigrateMySqlAzureDbForMySqlSyncTaskOutputError | MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseError;
|
3363
3688
|
|
3364
3689
|
/** Properties for the task that migrates MySQL databases to Azure Database for MySQL for online migrations */
|
3365
|
-
export declare
|
3690
|
+
export declare interface MigrateMySqlAzureDbForMySqlSyncTaskProperties extends ProjectTaskProperties {
|
3366
3691
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3367
3692
|
taskType: "Migrate.MySql.AzureDbForMySql.Sync";
|
3368
3693
|
/** Task input */
|
@@ -3372,10 +3697,10 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskProperties = ProjectTaskP
|
|
3372
3697
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3373
3698
|
*/
|
3374
3699
|
readonly output?: MigrateMySqlAzureDbForMySqlSyncTaskOutputUnion[];
|
3375
|
-
}
|
3700
|
+
}
|
3376
3701
|
|
3377
3702
|
/** Properties for the task that migrates Oracle to Azure Database for PostgreSQL for online migrations */
|
3378
|
-
export declare
|
3703
|
+
export declare interface MigrateOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
3379
3704
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3380
3705
|
taskType: "Migrate.Oracle.AzureDbForPostgreSql.Sync";
|
3381
3706
|
/** Task input */
|
@@ -3385,7 +3710,7 @@ export declare type MigrateOracleAzureDbForPostgreSqlSyncTaskProperties = Projec
|
|
3385
3710
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3386
3711
|
*/
|
3387
3712
|
readonly output?: MigrateOracleAzureDbPostgreSqlSyncTaskOutputUnion[];
|
3388
|
-
}
|
3713
|
+
}
|
3389
3714
|
|
3390
3715
|
/** Database specific information for Oracle to Azure Database for PostgreSQL migration task inputs */
|
3391
3716
|
export declare interface MigrateOracleAzureDbPostgreSqlSyncDatabaseInput {
|
@@ -3436,16 +3761,16 @@ export declare interface MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
|
3436
3761
|
readonly id?: string;
|
3437
3762
|
}
|
3438
3763
|
|
3439
|
-
export declare
|
3764
|
+
export declare interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseError extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
3440
3765
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3441
3766
|
resultType: "DatabaseLevelErrorOutput";
|
3442
3767
|
/** Error message */
|
3443
3768
|
errorMessage?: string;
|
3444
3769
|
/** List of error events. */
|
3445
3770
|
events?: SyncMigrationDatabaseErrorEvent[];
|
3446
|
-
}
|
3771
|
+
}
|
3447
3772
|
|
3448
|
-
export declare
|
3773
|
+
export declare interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
3449
3774
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3450
3775
|
resultType: "DatabaseLevelOutput";
|
3451
3776
|
/**
|
@@ -3523,9 +3848,9 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel =
|
|
3523
3848
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3524
3849
|
*/
|
3525
3850
|
readonly latency?: number;
|
3526
|
-
}
|
3851
|
+
}
|
3527
3852
|
|
3528
|
-
export declare
|
3853
|
+
export declare interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputError extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
3529
3854
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3530
3855
|
resultType: "ErrorOutput";
|
3531
3856
|
/**
|
@@ -3533,9 +3858,9 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputError = MigrateO
|
|
3533
3858
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3534
3859
|
*/
|
3535
3860
|
readonly error?: ReportableException;
|
3536
|
-
}
|
3861
|
+
}
|
3537
3862
|
|
3538
|
-
export declare
|
3863
|
+
export declare interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
3539
3864
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3540
3865
|
resultType: "MigrationLevelOutput";
|
3541
3866
|
/**
|
@@ -3568,9 +3893,9 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel =
|
|
3568
3893
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3569
3894
|
*/
|
3570
3895
|
readonly targetServer?: string;
|
3571
|
-
}
|
3896
|
+
}
|
3572
3897
|
|
3573
|
-
export declare
|
3898
|
+
export declare interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
|
3574
3899
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3575
3900
|
resultType: "TableLevelOutput";
|
3576
3901
|
/**
|
@@ -3638,7 +3963,7 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel = Mig
|
|
3638
3963
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3639
3964
|
*/
|
3640
3965
|
readonly lastModifiedTime?: Date;
|
3641
|
-
}
|
3966
|
+
}
|
3642
3967
|
|
3643
3968
|
export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputUnion = MigrateOracleAzureDbPostgreSqlSyncTaskOutput | MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel | MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel | MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel | MigrateOracleAzureDbPostgreSqlSyncTaskOutputError | MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseError;
|
3644
3969
|
|
@@ -3693,16 +4018,16 @@ export declare interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
|
3693
4018
|
readonly id?: string;
|
3694
4019
|
}
|
3695
4020
|
|
3696
|
-
export declare
|
4021
|
+
export declare interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseError extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
3697
4022
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3698
4023
|
resultType: "DatabaseLevelErrorOutput";
|
3699
4024
|
/** Error message */
|
3700
4025
|
errorMessage?: string;
|
3701
4026
|
/** List of error events. */
|
3702
4027
|
events?: SyncMigrationDatabaseErrorEvent[];
|
3703
|
-
}
|
4028
|
+
}
|
3704
4029
|
|
3705
|
-
export declare
|
4030
|
+
export declare interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
3706
4031
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3707
4032
|
resultType: "DatabaseLevelOutput";
|
3708
4033
|
/**
|
@@ -3780,9 +4105,9 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseL
|
|
3780
4105
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3781
4106
|
*/
|
3782
4107
|
readonly latency?: number;
|
3783
|
-
}
|
4108
|
+
}
|
3784
4109
|
|
3785
|
-
export declare
|
4110
|
+
export declare interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
3786
4111
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3787
4112
|
resultType: "ErrorOutput";
|
3788
4113
|
/**
|
@@ -3792,9 +4117,9 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError = M
|
|
3792
4117
|
readonly error?: ReportableException;
|
3793
4118
|
/** List of error events */
|
3794
4119
|
events?: SyncMigrationDatabaseErrorEvent[];
|
3795
|
-
}
|
4120
|
+
}
|
3796
4121
|
|
3797
|
-
export declare
|
4122
|
+
export declare interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
3798
4123
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3799
4124
|
resultType: "MigrationLevelOutput";
|
3800
4125
|
/**
|
@@ -3844,9 +4169,9 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigration
|
|
3844
4169
|
readonly state?: ReplicateMigrationState;
|
3845
4170
|
/** Number of databases to include */
|
3846
4171
|
databaseCount?: number;
|
3847
|
-
}
|
4172
|
+
}
|
3848
4173
|
|
3849
|
-
export declare
|
4174
|
+
export declare interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
|
3850
4175
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3851
4176
|
resultType: "TableLevelOutput";
|
3852
4177
|
/**
|
@@ -3914,12 +4239,12 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLeve
|
|
3914
4239
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
3915
4240
|
*/
|
3916
4241
|
readonly lastModifiedTime?: Date;
|
3917
|
-
}
|
4242
|
+
}
|
3918
4243
|
|
3919
4244
|
export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputUnion = MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevel | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevel | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError | MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseError;
|
3920
4245
|
|
3921
4246
|
/** Properties for the task that migrates PostgreSQL databases to Azure Database for PostgreSQL for online migrations */
|
3922
|
-
export declare
|
4247
|
+
export declare interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
3923
4248
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3924
4249
|
taskType: "Migrate.PostgreSql.AzureDbForPostgreSql.SyncV2";
|
3925
4250
|
/** Task input */
|
@@ -3933,7 +4258,7 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskProperties = Pr
|
|
3933
4258
|
taskId?: string;
|
3934
4259
|
/** DateTime in UTC when the task was created */
|
3935
4260
|
createdOn?: string;
|
3936
|
-
}
|
4261
|
+
}
|
3937
4262
|
|
3938
4263
|
/** Database input for migrate schema Sql Server to Azure SQL Server scenario */
|
3939
4264
|
export declare interface MigrateSchemaSqlServerSqlDbDatabaseInput {
|
@@ -3948,14 +4273,14 @@ export declare interface MigrateSchemaSqlServerSqlDbDatabaseInput {
|
|
3948
4273
|
}
|
3949
4274
|
|
3950
4275
|
/** Input for task that migrates Schema for SQL Server databases to Azure SQL databases */
|
3951
|
-
export declare
|
4276
|
+
export declare interface MigrateSchemaSqlServerSqlDbTaskInput extends SqlMigrationTaskInput {
|
3952
4277
|
/** Databases to migrate */
|
3953
4278
|
selectedDatabases: MigrateSchemaSqlServerSqlDbDatabaseInput[];
|
3954
4279
|
/** encrypted key for secure fields */
|
3955
4280
|
encryptedKeyForSecureFields?: string;
|
3956
4281
|
/** Migration start time */
|
3957
4282
|
startedOn?: string;
|
3958
|
-
}
|
4283
|
+
}
|
3959
4284
|
|
3960
4285
|
/** Output for the task that migrates Schema for SQL Server databases to Azure SQL databases */
|
3961
4286
|
export declare interface MigrateSchemaSqlServerSqlDbTaskOutput {
|
@@ -3968,7 +4293,7 @@ export declare interface MigrateSchemaSqlServerSqlDbTaskOutput {
|
|
3968
4293
|
readonly id?: string;
|
3969
4294
|
}
|
3970
4295
|
|
3971
|
-
export declare
|
4296
|
+
export declare interface MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
3972
4297
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
3973
4298
|
resultType: "DatabaseLevelOutput";
|
3974
4299
|
/**
|
@@ -4021,9 +4346,9 @@ export declare type MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel = Migrate
|
|
4021
4346
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4022
4347
|
*/
|
4023
4348
|
readonly fileId?: string;
|
4024
|
-
}
|
4349
|
+
}
|
4025
4350
|
|
4026
|
-
export declare
|
4351
|
+
export declare interface MigrateSchemaSqlServerSqlDbTaskOutputError extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
4027
4352
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4028
4353
|
resultType: "SchemaErrorOutput";
|
4029
4354
|
/**
|
@@ -4036,9 +4361,9 @@ export declare type MigrateSchemaSqlServerSqlDbTaskOutputError = MigrateSchemaSq
|
|
4036
4361
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4037
4362
|
*/
|
4038
4363
|
readonly errorText?: string;
|
4039
|
-
}
|
4364
|
+
}
|
4040
4365
|
|
4041
|
-
export declare
|
4366
|
+
export declare interface MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
4042
4367
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4043
4368
|
resultType: "MigrationLevelOutput";
|
4044
4369
|
/**
|
@@ -4076,12 +4401,12 @@ export declare type MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel = Migrat
|
|
4076
4401
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4077
4402
|
*/
|
4078
4403
|
readonly targetServerBrandVersion?: string;
|
4079
|
-
}
|
4404
|
+
}
|
4080
4405
|
|
4081
4406
|
export declare type MigrateSchemaSqlServerSqlDbTaskOutputUnion = MigrateSchemaSqlServerSqlDbTaskOutput | MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel | MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel | MigrateSchemaSqlServerSqlDbTaskOutputError | MigrateSchemaSqlTaskOutputError;
|
4082
4407
|
|
4083
4408
|
/** Properties for task that migrates Schema for SQL Server databases to Azure SQL databases */
|
4084
|
-
export declare
|
4409
|
+
export declare interface MigrateSchemaSqlServerSqlDbTaskProperties extends ProjectTaskProperties {
|
4085
4410
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4086
4411
|
taskType: "MigrateSchemaSqlServerSqlDb";
|
4087
4412
|
/** Task input */
|
@@ -4095,9 +4420,9 @@ export declare type MigrateSchemaSqlServerSqlDbTaskProperties = ProjectTaskPrope
|
|
4095
4420
|
createdOn?: string;
|
4096
4421
|
/** Task id */
|
4097
4422
|
taskId?: string;
|
4098
|
-
}
|
4423
|
+
}
|
4099
4424
|
|
4100
|
-
export declare
|
4425
|
+
export declare interface MigrateSchemaSqlTaskOutputError extends MigrateSchemaSqlServerSqlDbTaskOutput {
|
4101
4426
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4102
4427
|
resultType: "ErrorOutput";
|
4103
4428
|
/**
|
@@ -4105,7 +4430,7 @@ export declare type MigrateSchemaSqlTaskOutputError = MigrateSchemaSqlServerSqlD
|
|
4105
4430
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4106
4431
|
*/
|
4107
4432
|
readonly error?: ReportableException;
|
4108
|
-
}
|
4433
|
+
}
|
4109
4434
|
|
4110
4435
|
/** Database specific information for SQL to SQL migration task inputs */
|
4111
4436
|
export declare interface MigrateSqlServerDatabaseInput {
|
@@ -4166,12 +4491,12 @@ export declare interface MigrateSqlServerSqlDbSyncDatabaseInput {
|
|
4166
4491
|
}
|
4167
4492
|
|
4168
4493
|
/** Input for the task that migrates on-prem SQL Server databases to Azure SQL Database for online migrations */
|
4169
|
-
export declare
|
4494
|
+
export declare interface MigrateSqlServerSqlDbSyncTaskInput extends SqlMigrationTaskInput {
|
4170
4495
|
/** Databases to migrate */
|
4171
4496
|
selectedDatabases: MigrateSqlServerSqlDbSyncDatabaseInput[];
|
4172
4497
|
/** Validation options */
|
4173
4498
|
validationOptions?: MigrationValidationOptions;
|
4174
|
-
}
|
4499
|
+
}
|
4175
4500
|
|
4176
4501
|
/** Output for the task that migrates on-prem SQL Server databases to Azure SQL Database for online migrations */
|
4177
4502
|
export declare interface MigrateSqlServerSqlDbSyncTaskOutput {
|
@@ -4184,16 +4509,16 @@ export declare interface MigrateSqlServerSqlDbSyncTaskOutput {
|
|
4184
4509
|
readonly id?: string;
|
4185
4510
|
}
|
4186
4511
|
|
4187
|
-
export declare
|
4512
|
+
export declare interface MigrateSqlServerSqlDbSyncTaskOutputDatabaseError extends MigrateSqlServerSqlDbSyncTaskOutput {
|
4188
4513
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4189
4514
|
resultType: "DatabaseLevelErrorOutput";
|
4190
4515
|
/** Error message */
|
4191
4516
|
errorMessage?: string;
|
4192
4517
|
/** List of error events. */
|
4193
4518
|
events?: SyncMigrationDatabaseErrorEvent[];
|
4194
|
-
}
|
4519
|
+
}
|
4195
4520
|
|
4196
|
-
export declare
|
4521
|
+
export declare interface MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
|
4197
4522
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4198
4523
|
resultType: "DatabaseLevelOutput";
|
4199
4524
|
/**
|
@@ -4271,9 +4596,9 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel = MigrateSq
|
|
4271
4596
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4272
4597
|
*/
|
4273
4598
|
readonly latency?: number;
|
4274
|
-
}
|
4599
|
+
}
|
4275
4600
|
|
4276
|
-
export declare
|
4601
|
+
export declare interface MigrateSqlServerSqlDbSyncTaskOutputError extends MigrateSqlServerSqlDbSyncTaskOutput {
|
4277
4602
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4278
4603
|
resultType: "ErrorOutput";
|
4279
4604
|
/**
|
@@ -4281,9 +4606,9 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputError = MigrateSqlServerS
|
|
4281
4606
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4282
4607
|
*/
|
4283
4608
|
readonly error?: ReportableException;
|
4284
|
-
}
|
4609
|
+
}
|
4285
4610
|
|
4286
|
-
export declare
|
4611
|
+
export declare interface MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
|
4287
4612
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4288
4613
|
resultType: "MigrationLevelOutput";
|
4289
4614
|
/**
|
@@ -4321,9 +4646,9 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel = MigrateS
|
|
4321
4646
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4322
4647
|
*/
|
4323
4648
|
readonly databaseCount?: number;
|
4324
|
-
}
|
4649
|
+
}
|
4325
4650
|
|
4326
|
-
export declare
|
4651
|
+
export declare interface MigrateSqlServerSqlDbSyncTaskOutputTableLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
|
4327
4652
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4328
4653
|
resultType: "TableLevelOutput";
|
4329
4654
|
/**
|
@@ -4391,12 +4716,12 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputTableLevel = MigrateSqlSe
|
|
4391
4716
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4392
4717
|
*/
|
4393
4718
|
readonly lastModifiedTime?: Date;
|
4394
|
-
}
|
4719
|
+
}
|
4395
4720
|
|
4396
4721
|
export declare type MigrateSqlServerSqlDbSyncTaskOutputUnion = MigrateSqlServerSqlDbSyncTaskOutput | MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel | MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel | MigrateSqlServerSqlDbSyncTaskOutputTableLevel | MigrateSqlServerSqlDbSyncTaskOutputError | MigrateSqlServerSqlDbSyncTaskOutputDatabaseError;
|
4397
4722
|
|
4398
4723
|
/** Properties for the task that migrates on-prem SQL Server databases to Azure SQL Database for online migrations */
|
4399
|
-
export declare
|
4724
|
+
export declare interface MigrateSqlServerSqlDbSyncTaskProperties extends ProjectTaskProperties {
|
4400
4725
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4401
4726
|
taskType: "Migrate.SqlServer.AzureSqlDb.Sync";
|
4402
4727
|
/** Task input */
|
@@ -4406,10 +4731,10 @@ export declare type MigrateSqlServerSqlDbSyncTaskProperties = ProjectTaskPropert
|
|
4406
4731
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4407
4732
|
*/
|
4408
4733
|
readonly output?: MigrateSqlServerSqlDbSyncTaskOutputUnion[];
|
4409
|
-
}
|
4734
|
+
}
|
4410
4735
|
|
4411
4736
|
/** Input for the task that migrates on-prem SQL Server databases to Azure SQL Database */
|
4412
|
-
export declare
|
4737
|
+
export declare interface MigrateSqlServerSqlDbTaskInput extends SqlMigrationTaskInput {
|
4413
4738
|
/** Databases to migrate */
|
4414
4739
|
selectedDatabases: MigrateSqlServerSqlDbDatabaseInput[];
|
4415
4740
|
/**
|
@@ -4422,7 +4747,7 @@ export declare type MigrateSqlServerSqlDbTaskInput = SqlMigrationTaskInput & {
|
|
4422
4747
|
startedOn?: string;
|
4423
4748
|
/** encrypted key for secure fields */
|
4424
4749
|
encryptedKeyForSecureFields?: string;
|
4425
|
-
}
|
4750
|
+
}
|
4426
4751
|
|
4427
4752
|
/** Output for the task that migrates on-prem SQL Server databases to Azure SQL Database */
|
4428
4753
|
export declare interface MigrateSqlServerSqlDbTaskOutput {
|
@@ -4435,7 +4760,7 @@ export declare interface MigrateSqlServerSqlDbTaskOutput {
|
|
4435
4760
|
readonly id?: string;
|
4436
4761
|
}
|
4437
4762
|
|
4438
|
-
export declare
|
4763
|
+
export declare interface MigrateSqlServerSqlDbTaskOutputDatabaseLevel extends MigrateSqlServerSqlDbTaskOutput {
|
4439
4764
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4440
4765
|
resultType: "DatabaseLevelOutput";
|
4441
4766
|
/**
|
@@ -4508,14 +4833,14 @@ export declare type MigrateSqlServerSqlDbTaskOutputDatabaseLevel = MigrateSqlSer
|
|
4508
4833
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4509
4834
|
*/
|
4510
4835
|
readonly objectSummary?: string;
|
4511
|
-
}
|
4836
|
+
}
|
4512
4837
|
|
4513
|
-
export declare
|
4838
|
+
export declare interface MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResult extends MigrateSqlServerSqlDbTaskOutput, MigrationValidationDatabaseLevelResult {
|
4514
4839
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4515
4840
|
resultType: "MigrationDatabaseLevelValidationOutput";
|
4516
|
-
}
|
4841
|
+
}
|
4517
4842
|
|
4518
|
-
export declare
|
4843
|
+
export declare interface MigrateSqlServerSqlDbTaskOutputError extends MigrateSqlServerSqlDbTaskOutput {
|
4519
4844
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4520
4845
|
resultType: "ErrorOutput";
|
4521
4846
|
/**
|
@@ -4523,9 +4848,9 @@ export declare type MigrateSqlServerSqlDbTaskOutputError = MigrateSqlServerSqlDb
|
|
4523
4848
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4524
4849
|
*/
|
4525
4850
|
readonly error?: ReportableException;
|
4526
|
-
}
|
4851
|
+
}
|
4527
4852
|
|
4528
|
-
export declare
|
4853
|
+
export declare interface MigrateSqlServerSqlDbTaskOutputMigrationLevel extends MigrateSqlServerSqlDbTaskOutput {
|
4529
4854
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4530
4855
|
resultType: "MigrationLevelOutput";
|
4531
4856
|
/**
|
@@ -4597,9 +4922,9 @@ export declare type MigrateSqlServerSqlDbTaskOutputMigrationLevel = MigrateSqlSe
|
|
4597
4922
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4598
4923
|
*/
|
4599
4924
|
readonly exceptionsAndWarnings?: ReportableException[];
|
4600
|
-
}
|
4925
|
+
}
|
4601
4926
|
|
4602
|
-
export declare
|
4927
|
+
export declare interface MigrateSqlServerSqlDbTaskOutputTableLevel extends MigrateSqlServerSqlDbTaskOutput {
|
4603
4928
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4604
4929
|
resultType: "TableLevelOutput";
|
4605
4930
|
/**
|
@@ -4647,17 +4972,17 @@ export declare type MigrateSqlServerSqlDbTaskOutputTableLevel = MigrateSqlServer
|
|
4647
4972
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4648
4973
|
*/
|
4649
4974
|
readonly resultPrefix?: string;
|
4650
|
-
}
|
4975
|
+
}
|
4651
4976
|
|
4652
4977
|
export declare type MigrateSqlServerSqlDbTaskOutputUnion = MigrateSqlServerSqlDbTaskOutput | MigrateSqlServerSqlDbTaskOutputMigrationLevel | MigrateSqlServerSqlDbTaskOutputDatabaseLevel | MigrateSqlServerSqlDbTaskOutputTableLevel | MigrateSqlServerSqlDbTaskOutputError | MigrateSqlServerSqlDbTaskOutputValidationResult | MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResult;
|
4653
4978
|
|
4654
|
-
export declare
|
4979
|
+
export declare interface MigrateSqlServerSqlDbTaskOutputValidationResult extends MigrateSqlServerSqlDbTaskOutput, MigrationValidationResult {
|
4655
4980
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4656
4981
|
resultType: "MigrationValidationOutput";
|
4657
|
-
}
|
4982
|
+
}
|
4658
4983
|
|
4659
4984
|
/** Properties for the task that migrates on-prem SQL Server databases to Azure SQL Database */
|
4660
|
-
export declare
|
4985
|
+
export declare interface MigrateSqlServerSqlDbTaskProperties extends ProjectTaskProperties {
|
4661
4986
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4662
4987
|
taskType: "Migrate.SqlServer.SqlDb";
|
4663
4988
|
/** Task input */
|
@@ -4671,7 +4996,7 @@ export declare type MigrateSqlServerSqlDbTaskProperties = ProjectTaskProperties
|
|
4671
4996
|
taskId?: string;
|
4672
4997
|
/** whether the task can be cloned or not */
|
4673
4998
|
isCloneable?: boolean;
|
4674
|
-
}
|
4999
|
+
}
|
4675
5000
|
|
4676
5001
|
/** Database specific information for SQL to Azure SQL DB Managed Instance migration task inputs */
|
4677
5002
|
export declare interface MigrateSqlServerSqlMIDatabaseInput {
|
@@ -4688,7 +5013,8 @@ export declare interface MigrateSqlServerSqlMIDatabaseInput {
|
|
4688
5013
|
}
|
4689
5014
|
|
4690
5015
|
/** Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance online scenario. */
|
4691
|
-
export declare
|
5016
|
+
export declare interface MigrateSqlServerSqlMISyncTaskInput extends SqlServerSqlMISyncTaskInput {
|
5017
|
+
}
|
4692
5018
|
|
4693
5019
|
/** Output for task that migrates SQL Server databases to Azure SQL Database Managed Instance using Log Replay Service. */
|
4694
5020
|
export declare interface MigrateSqlServerSqlMISyncTaskOutput {
|
@@ -4701,7 +5027,7 @@ export declare interface MigrateSqlServerSqlMISyncTaskOutput {
|
|
4701
5027
|
readonly id?: string;
|
4702
5028
|
}
|
4703
5029
|
|
4704
|
-
export declare
|
5030
|
+
export declare interface MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel extends MigrateSqlServerSqlMISyncTaskOutput {
|
4705
5031
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4706
5032
|
resultType: "DatabaseLevelOutput";
|
4707
5033
|
/**
|
@@ -4759,9 +5085,9 @@ export declare type MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel = MigrateSq
|
|
4759
5085
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4760
5086
|
*/
|
4761
5087
|
readonly exceptionsAndWarnings?: ReportableException[];
|
4762
|
-
}
|
5088
|
+
}
|
4763
5089
|
|
4764
|
-
export declare
|
5090
|
+
export declare interface MigrateSqlServerSqlMISyncTaskOutputError extends MigrateSqlServerSqlMISyncTaskOutput {
|
4765
5091
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4766
5092
|
resultType: "ErrorOutput";
|
4767
5093
|
/**
|
@@ -4769,9 +5095,9 @@ export declare type MigrateSqlServerSqlMISyncTaskOutputError = MigrateSqlServerS
|
|
4769
5095
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4770
5096
|
*/
|
4771
5097
|
readonly error?: ReportableException;
|
4772
|
-
}
|
5098
|
+
}
|
4773
5099
|
|
4774
|
-
export declare
|
5100
|
+
export declare interface MigrateSqlServerSqlMISyncTaskOutputMigrationLevel extends MigrateSqlServerSqlMISyncTaskOutput {
|
4775
5101
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4776
5102
|
resultType: "MigrationLevelOutput";
|
4777
5103
|
/**
|
@@ -4829,12 +5155,12 @@ export declare type MigrateSqlServerSqlMISyncTaskOutputMigrationLevel = MigrateS
|
|
4829
5155
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4830
5156
|
*/
|
4831
5157
|
readonly databaseErrorCount?: number;
|
4832
|
-
}
|
5158
|
+
}
|
4833
5159
|
|
4834
5160
|
export declare type MigrateSqlServerSqlMISyncTaskOutputUnion = MigrateSqlServerSqlMISyncTaskOutput | MigrateSqlServerSqlMISyncTaskOutputMigrationLevel | MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel | MigrateSqlServerSqlMISyncTaskOutputError;
|
4835
5161
|
|
4836
5162
|
/** Properties for task that migrates SQL Server databases to Azure SQL Database Managed Instance sync scenario */
|
4837
|
-
export declare
|
5163
|
+
export declare interface MigrateSqlServerSqlMISyncTaskProperties extends ProjectTaskProperties {
|
4838
5164
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4839
5165
|
taskType: "Migrate.SqlServer.AzureSqlDbMI.Sync.LRS";
|
4840
5166
|
/** Task input */
|
@@ -4844,10 +5170,10 @@ export declare type MigrateSqlServerSqlMISyncTaskProperties = ProjectTaskPropert
|
|
4844
5170
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4845
5171
|
*/
|
4846
5172
|
readonly output?: MigrateSqlServerSqlMISyncTaskOutputUnion[];
|
4847
|
-
}
|
5173
|
+
}
|
4848
5174
|
|
4849
5175
|
/** Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance. */
|
4850
|
-
export declare
|
5176
|
+
export declare interface MigrateSqlServerSqlMITaskInput extends SqlMigrationTaskInput {
|
4851
5177
|
/** Databases to migrate */
|
4852
5178
|
selectedDatabases: MigrateSqlServerSqlMIDatabaseInput[];
|
4853
5179
|
/** Date and time relative to UTC when the migration was started on */
|
@@ -4864,7 +5190,7 @@ export declare type MigrateSqlServerSqlMITaskInput = SqlMigrationTaskInput & {
|
|
4864
5190
|
backupMode?: BackupMode;
|
4865
5191
|
/** Azure Active Directory domain name in the format of 'contoso.com' for federated Azure AD or 'contoso.onmicrosoft.com' for managed domain, required if and only if Windows logins are selected */
|
4866
5192
|
aadDomainName?: string;
|
4867
|
-
}
|
5193
|
+
}
|
4868
5194
|
|
4869
5195
|
/** Output for task that migrates SQL Server databases to Azure SQL Database Managed Instance. */
|
4870
5196
|
export declare interface MigrateSqlServerSqlMITaskOutput {
|
@@ -4877,7 +5203,7 @@ export declare interface MigrateSqlServerSqlMITaskOutput {
|
|
4877
5203
|
readonly id?: string;
|
4878
5204
|
}
|
4879
5205
|
|
4880
|
-
export declare
|
5206
|
+
export declare interface MigrateSqlServerSqlMITaskOutputAgentJobLevel extends MigrateSqlServerSqlMITaskOutput {
|
4881
5207
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4882
5208
|
resultType: "AgentJobLevelOutput";
|
4883
5209
|
/**
|
@@ -4915,9 +5241,9 @@ export declare type MigrateSqlServerSqlMITaskOutputAgentJobLevel = MigrateSqlSer
|
|
4915
5241
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4916
5242
|
*/
|
4917
5243
|
readonly exceptionsAndWarnings?: ReportableException[];
|
4918
|
-
}
|
5244
|
+
}
|
4919
5245
|
|
4920
|
-
export declare
|
5246
|
+
export declare interface MigrateSqlServerSqlMITaskOutputDatabaseLevel extends MigrateSqlServerSqlMITaskOutput {
|
4921
5247
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4922
5248
|
resultType: "DatabaseLevelOutput";
|
4923
5249
|
/**
|
@@ -4960,9 +5286,9 @@ export declare type MigrateSqlServerSqlMITaskOutputDatabaseLevel = MigrateSqlSer
|
|
4960
5286
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4961
5287
|
*/
|
4962
5288
|
readonly exceptionsAndWarnings?: ReportableException[];
|
4963
|
-
}
|
5289
|
+
}
|
4964
5290
|
|
4965
|
-
export declare
|
5291
|
+
export declare interface MigrateSqlServerSqlMITaskOutputError extends MigrateSqlServerSqlMITaskOutput {
|
4966
5292
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4967
5293
|
resultType: "ErrorOutput";
|
4968
5294
|
/**
|
@@ -4970,9 +5296,9 @@ export declare type MigrateSqlServerSqlMITaskOutputError = MigrateSqlServerSqlMI
|
|
4970
5296
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
4971
5297
|
*/
|
4972
5298
|
readonly error?: ReportableException;
|
4973
|
-
}
|
5299
|
+
}
|
4974
5300
|
|
4975
|
-
export declare
|
5301
|
+
export declare interface MigrateSqlServerSqlMITaskOutputLoginLevel extends MigrateSqlServerSqlMITaskOutput {
|
4976
5302
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
4977
5303
|
resultType: "LoginLevelOutput";
|
4978
5304
|
/**
|
@@ -5010,9 +5336,9 @@ export declare type MigrateSqlServerSqlMITaskOutputLoginLevel = MigrateSqlServer
|
|
5010
5336
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
5011
5337
|
*/
|
5012
5338
|
readonly exceptionsAndWarnings?: ReportableException[];
|
5013
|
-
}
|
5339
|
+
}
|
5014
5340
|
|
5015
|
-
export declare
|
5341
|
+
export declare interface MigrateSqlServerSqlMITaskOutputMigrationLevel extends MigrateSqlServerSqlMITaskOutput {
|
5016
5342
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5017
5343
|
resultType: "MigrationLevelOutput";
|
5018
5344
|
/**
|
@@ -5090,12 +5416,12 @@ export declare type MigrateSqlServerSqlMITaskOutputMigrationLevel = MigrateSqlSe
|
|
5090
5416
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
5091
5417
|
*/
|
5092
5418
|
readonly exceptionsAndWarnings?: ReportableException[];
|
5093
|
-
}
|
5419
|
+
}
|
5094
5420
|
|
5095
5421
|
export declare type MigrateSqlServerSqlMITaskOutputUnion = MigrateSqlServerSqlMITaskOutput | MigrateSqlServerSqlMITaskOutputMigrationLevel | MigrateSqlServerSqlMITaskOutputDatabaseLevel | MigrateSqlServerSqlMITaskOutputAgentJobLevel | MigrateSqlServerSqlMITaskOutputLoginLevel | MigrateSqlServerSqlMITaskOutputError;
|
5096
5422
|
|
5097
5423
|
/** Properties for task that migrates SQL Server databases to Azure SQL Database Managed Instance */
|
5098
|
-
export declare
|
5424
|
+
export declare interface MigrateSqlServerSqlMITaskProperties extends ProjectTaskProperties {
|
5099
5425
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5100
5426
|
taskType: "Migrate.SqlServer.AzureSqlDbMI";
|
5101
5427
|
/** Task input */
|
@@ -5107,13 +5433,13 @@ export declare type MigrateSqlServerSqlMITaskProperties = ProjectTaskProperties
|
|
5107
5433
|
readonly output?: MigrateSqlServerSqlMITaskOutputUnion[];
|
5108
5434
|
/** task id */
|
5109
5435
|
taskId?: string;
|
5110
|
-
}
|
5436
|
+
}
|
5111
5437
|
|
5112
5438
|
/** Input for task that migrates SSIS packages from SQL Server to Azure SQL Database Managed Instance. */
|
5113
|
-
export declare
|
5439
|
+
export declare interface MigrateSsisTaskInput extends SqlMigrationTaskInput {
|
5114
5440
|
/** SSIS package migration information. */
|
5115
5441
|
ssisMigrationInfo: SsisMigrationInfo;
|
5116
|
-
}
|
5442
|
+
}
|
5117
5443
|
|
5118
5444
|
/** Output for task that migrates SSIS packages from SQL Server to Azure SQL Database Managed Instance. */
|
5119
5445
|
export declare interface MigrateSsisTaskOutput {
|
@@ -5126,7 +5452,7 @@ export declare interface MigrateSsisTaskOutput {
|
|
5126
5452
|
readonly id?: string;
|
5127
5453
|
}
|
5128
5454
|
|
5129
|
-
export declare
|
5455
|
+
export declare interface MigrateSsisTaskOutputMigrationLevel extends MigrateSsisTaskOutput {
|
5130
5456
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5131
5457
|
resultType: "MigrationLevelOutput";
|
5132
5458
|
/**
|
@@ -5179,9 +5505,9 @@ export declare type MigrateSsisTaskOutputMigrationLevel = MigrateSsisTaskOutput
|
|
5179
5505
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
5180
5506
|
*/
|
5181
5507
|
readonly stage?: SsisMigrationStage;
|
5182
|
-
}
|
5508
|
+
}
|
5183
5509
|
|
5184
|
-
export declare
|
5510
|
+
export declare interface MigrateSsisTaskOutputProjectLevel extends MigrateSsisTaskOutput {
|
5185
5511
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5186
5512
|
resultType: "SsisProjectLevelOutput";
|
5187
5513
|
/**
|
@@ -5224,12 +5550,12 @@ export declare type MigrateSsisTaskOutputProjectLevel = MigrateSsisTaskOutput &
|
|
5224
5550
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
5225
5551
|
*/
|
5226
5552
|
readonly exceptionsAndWarnings?: ReportableException[];
|
5227
|
-
}
|
5553
|
+
}
|
5228
5554
|
|
5229
5555
|
export declare type MigrateSsisTaskOutputUnion = MigrateSsisTaskOutput | MigrateSsisTaskOutputMigrationLevel | MigrateSsisTaskOutputProjectLevel;
|
5230
5556
|
|
5231
5557
|
/** Properties for task that migrates SSIS packages from SQL Server databases to Azure SQL Database Managed Instance. */
|
5232
|
-
export declare
|
5558
|
+
export declare interface MigrateSsisTaskProperties extends ProjectTaskProperties {
|
5233
5559
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5234
5560
|
taskType: "Migrate.Ssis";
|
5235
5561
|
/** Task input */
|
@@ -5239,7 +5565,7 @@ export declare type MigrateSsisTaskProperties = ProjectTaskProperties & {
|
|
5239
5565
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
5240
5566
|
*/
|
5241
5567
|
readonly output?: MigrateSsisTaskOutputUnion[];
|
5242
|
-
}
|
5568
|
+
}
|
5243
5569
|
|
5244
5570
|
/** Input for command that completes sync migration for a database. */
|
5245
5571
|
export declare interface MigrateSyncCompleteCommandInput {
|
@@ -5264,7 +5590,7 @@ export declare interface MigrateSyncCompleteCommandOutput {
|
|
5264
5590
|
}
|
5265
5591
|
|
5266
5592
|
/** Properties for the command that completes sync migration for a database. */
|
5267
|
-
export declare
|
5593
|
+
export declare interface MigrateSyncCompleteCommandProperties extends CommandProperties {
|
5268
5594
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5269
5595
|
commandType: "Migrate.Sync.Complete.Database";
|
5270
5596
|
/** Command input */
|
@@ -5274,7 +5600,7 @@ export declare type MigrateSyncCompleteCommandProperties = CommandProperties & {
|
|
5274
5600
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
5275
5601
|
*/
|
5276
5602
|
readonly output?: MigrateSyncCompleteCommandOutput;
|
5277
|
-
}
|
5603
|
+
}
|
5278
5604
|
|
5279
5605
|
/** Information about migration eligibility of a server object */
|
5280
5606
|
export declare interface MigrationEligibilityInfo {
|
@@ -5547,20 +5873,20 @@ export declare interface MigrationValidationResult {
|
|
5547
5873
|
}
|
5548
5874
|
|
5549
5875
|
/** Properties required to create a connection to Azure SQL database Managed instance */
|
5550
|
-
export declare
|
5876
|
+
export declare interface MiSqlConnectionInfo extends ConnectionInfo {
|
5551
5877
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5552
5878
|
type: "MiSqlConnectionInfo";
|
5553
5879
|
/** Resource id for Azure SQL database Managed instance */
|
5554
5880
|
managedInstanceResourceId: string;
|
5555
|
-
}
|
5881
|
+
}
|
5556
5882
|
|
5557
5883
|
/** Properties for the command that cancels a migration in whole or in part */
|
5558
|
-
export declare
|
5884
|
+
export declare interface MongoDbCancelCommand extends CommandProperties {
|
5559
5885
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5560
5886
|
commandType: "cancel";
|
5561
5887
|
/** Command input */
|
5562
5888
|
input?: MongoDbCommandInput;
|
5563
|
-
}
|
5889
|
+
}
|
5564
5890
|
|
5565
5891
|
/** Describes a MongoDB data source */
|
5566
5892
|
export declare interface MongoDbClusterInfo {
|
@@ -5586,7 +5912,7 @@ export declare interface MongoDbClusterInfo {
|
|
5586
5912
|
export declare type MongoDbClusterType = string;
|
5587
5913
|
|
5588
5914
|
/** Describes a supported collection within a MongoDB database */
|
5589
|
-
export declare
|
5915
|
+
export declare interface MongoDbCollectionInfo extends MongoDbObjectInfo {
|
5590
5916
|
/** The name of the database containing the collection */
|
5591
5917
|
databaseName: string;
|
5592
5918
|
/** Whether the collection is a capped collection (i.e. whether it has a fixed size and acts like a circular buffer) */
|
@@ -5601,13 +5927,13 @@ export declare type MongoDbCollectionInfo = MongoDbObjectInfo & {
|
|
5601
5927
|
supportsSharding: boolean;
|
5602
5928
|
/** The name of the collection that this is a view of, if IsView is true */
|
5603
5929
|
viewOf?: string;
|
5604
|
-
}
|
5930
|
+
}
|
5605
5931
|
|
5606
5932
|
/** Describes the progress of a collection */
|
5607
|
-
export declare
|
5933
|
+
export declare interface MongoDbCollectionProgress extends MongoDbProgress {
|
5608
5934
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5609
5935
|
resultType: "Collection";
|
5610
|
-
}
|
5936
|
+
}
|
5611
5937
|
|
5612
5938
|
/** Describes how an individual MongoDB collection should be migrated */
|
5613
5939
|
export declare interface MongoDbCollectionSettings {
|
@@ -5626,7 +5952,7 @@ export declare interface MongoDbCommandInput {
|
|
5626
5952
|
}
|
5627
5953
|
|
5628
5954
|
/** Describes a connection to a MongoDB data source */
|
5629
|
-
export declare
|
5955
|
+
export declare interface MongoDbConnectionInfo extends ConnectionInfo {
|
5630
5956
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5631
5957
|
type: "MongoDbConnectionInfo";
|
5632
5958
|
/** A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties */
|
@@ -5642,25 +5968,25 @@ export declare type MongoDbConnectionInfo = ConnectionInfo & {
|
|
5642
5968
|
port?: number;
|
5643
5969
|
/** Additional connection settings */
|
5644
5970
|
additionalSettings?: string;
|
5645
|
-
}
|
5971
|
+
}
|
5646
5972
|
|
5647
5973
|
/** Describes a database within a MongoDB data source */
|
5648
|
-
export declare
|
5974
|
+
export declare interface MongoDbDatabaseInfo extends MongoDbObjectInfo {
|
5649
5975
|
/** A list of supported collections in a MongoDB database */
|
5650
5976
|
collections: MongoDbCollectionInfo[];
|
5651
5977
|
/** Whether the database has sharding enabled. Note that the migration task will enable sharding on the target if necessary. */
|
5652
5978
|
supportsSharding: boolean;
|
5653
|
-
}
|
5979
|
+
}
|
5654
5980
|
|
5655
5981
|
/** Describes the progress of a database */
|
5656
|
-
export declare
|
5982
|
+
export declare interface MongoDbDatabaseProgress extends MongoDbProgress {
|
5657
5983
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5658
5984
|
resultType: "Database";
|
5659
5985
|
/** The progress of the collections in the database. The keys are the unqualified names of the collections */
|
5660
5986
|
collections?: {
|
5661
5987
|
[propertyName: string]: MongoDbCollectionProgress;
|
5662
5988
|
};
|
5663
|
-
}
|
5989
|
+
}
|
5664
5990
|
|
5665
5991
|
/** Describes how an individual MongoDB database should be migrated */
|
5666
5992
|
export declare interface MongoDbDatabaseSettings {
|
@@ -5696,28 +6022,28 @@ export declare interface MongoDbError {
|
|
5696
6022
|
export declare type MongoDbErrorType = string;
|
5697
6023
|
|
5698
6024
|
/** Properties for the command that finishes a migration in whole or in part */
|
5699
|
-
export declare
|
6025
|
+
export declare interface MongoDbFinishCommand extends CommandProperties {
|
5700
6026
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5701
6027
|
commandType: "finish";
|
5702
6028
|
/** Command input */
|
5703
6029
|
input?: MongoDbFinishCommandInput;
|
5704
|
-
}
|
6030
|
+
}
|
5705
6031
|
|
5706
6032
|
/** Describes the input to the 'finish' MongoDB migration command */
|
5707
|
-
export declare
|
6033
|
+
export declare interface MongoDbFinishCommandInput extends MongoDbCommandInput {
|
5708
6034
|
/** If true, replication for the affected objects will be stopped immediately. If false, the migrator will finish replaying queued events before finishing the replication. */
|
5709
6035
|
immediate: boolean;
|
5710
|
-
}
|
6036
|
+
}
|
5711
6037
|
|
5712
6038
|
/** Describes the progress of the overall migration */
|
5713
|
-
export declare
|
6039
|
+
export declare interface MongoDbMigrationProgress extends MongoDbProgress {
|
5714
6040
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5715
6041
|
resultType: "Migration";
|
5716
6042
|
/** The progress of the databases in the migration. The keys are the names of the databases */
|
5717
6043
|
databases?: {
|
5718
6044
|
[propertyName: string]: MongoDbDatabaseProgress;
|
5719
6045
|
};
|
5720
|
-
}
|
6046
|
+
}
|
5721
6047
|
|
5722
6048
|
/** Describes how a MongoDB data migration should be performed */
|
5723
6049
|
export declare interface MongoDbMigrationSettings {
|
@@ -5828,12 +6154,12 @@ export declare type MongoDbProgressUnion = MongoDbProgress | MongoDbCollectionPr
|
|
5828
6154
|
export declare type MongoDbReplication = string;
|
5829
6155
|
|
5830
6156
|
/** Properties for the command that restarts a migration in whole or in part */
|
5831
|
-
export declare
|
6157
|
+
export declare interface MongoDbRestartCommand extends CommandProperties {
|
5832
6158
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5833
6159
|
commandType: "restart";
|
5834
6160
|
/** Command input */
|
5835
6161
|
input?: MongoDbCommandInput;
|
5836
|
-
}
|
6162
|
+
}
|
5837
6163
|
|
5838
6164
|
/** Describes a field reference within a MongoDB shard key */
|
5839
6165
|
export declare interface MongoDbShardKeyField {
|
@@ -5881,7 +6207,7 @@ export declare interface MongoDbThrottlingSettings {
|
|
5881
6207
|
}
|
5882
6208
|
|
5883
6209
|
/** Information for connecting to MySQL server */
|
5884
|
-
export declare
|
6210
|
+
export declare interface MySqlConnectionInfo extends ConnectionInfo {
|
5885
6211
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
5886
6212
|
type: "MySqlConnectionInfo";
|
5887
6213
|
/** Name of the server */
|
@@ -5892,7 +6218,7 @@ export declare type MySqlConnectionInfo = ConnectionInfo & {
|
|
5892
6218
|
port: number;
|
5893
6219
|
/** Whether to encrypt the connection */
|
5894
6220
|
encryptConnection?: boolean;
|
5895
|
-
}
|
6221
|
+
}
|
5896
6222
|
|
5897
6223
|
/**
|
5898
6224
|
* Defines values for MySqlTargetPlatformType. \
|
@@ -6187,12 +6513,12 @@ export declare interface OperationsListOptionalParams extends coreClient.Operati
|
|
6187
6513
|
export declare type OperationsListResponse = OperationListResult;
|
6188
6514
|
|
6189
6515
|
/** Information for connecting to Oracle server */
|
6190
|
-
export declare
|
6516
|
+
export declare interface OracleConnectionInfo extends ConnectionInfo {
|
6191
6517
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
6192
6518
|
type: "OracleConnectionInfo";
|
6193
6519
|
/** EZConnect or TNSName connection string. */
|
6194
6520
|
dataSource: string;
|
6195
|
-
}
|
6521
|
+
}
|
6196
6522
|
|
6197
6523
|
/** Information about an Oracle OCI driver. */
|
6198
6524
|
export declare interface OracleOCIDriverInfo {
|
@@ -6237,7 +6563,7 @@ export declare interface OrphanedUserInfo {
|
|
6237
6563
|
}
|
6238
6564
|
|
6239
6565
|
/** Information for connecting to PostgreSQL server */
|
6240
|
-
export declare
|
6566
|
+
export declare interface PostgreSqlConnectionInfo extends ConnectionInfo {
|
6241
6567
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
6242
6568
|
type: "PostgreSqlConnectionInfo";
|
6243
6569
|
/** Name of the server */
|
@@ -6254,10 +6580,10 @@ export declare type PostgreSqlConnectionInfo = ConnectionInfo & {
|
|
6254
6580
|
encryptConnection?: boolean;
|
6255
6581
|
/** Whether to trust the server certificate */
|
6256
6582
|
trustServerCertificate?: boolean;
|
6257
|
-
}
|
6583
|
+
}
|
6258
6584
|
|
6259
6585
|
/** A project resource */
|
6260
|
-
export declare
|
6586
|
+
export declare interface Project extends TrackedResource {
|
6261
6587
|
/** HTTP strong entity tag value. This is ignored if submitted. */
|
6262
6588
|
eTag?: string;
|
6263
6589
|
/** Source platform for the project */
|
@@ -6282,10 +6608,10 @@ export declare type Project = TrackedResource & {
|
|
6282
6608
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
6283
6609
|
*/
|
6284
6610
|
readonly provisioningState?: ProjectProvisioningState;
|
6285
|
-
}
|
6611
|
+
}
|
6286
6612
|
|
6287
6613
|
/** A file resource */
|
6288
|
-
export declare
|
6614
|
+
export declare interface ProjectFile extends Resource {
|
6289
6615
|
/** HTTP strong entity tag value. This is ignored if submitted. */
|
6290
6616
|
etag?: string;
|
6291
6617
|
/** Custom file properties */
|
@@ -6295,7 +6621,7 @@ export declare type ProjectFile = Resource & {
|
|
6295
6621
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
6296
6622
|
*/
|
6297
6623
|
readonly systemData?: SystemData;
|
6298
|
-
}
|
6624
|
+
}
|
6299
6625
|
|
6300
6626
|
/** Base class for file properties. */
|
6301
6627
|
export declare interface ProjectFileProperties {
|
@@ -6454,7 +6780,7 @@ export declare type ProjectsUpdateResponse = Project;
|
|
6454
6780
|
export declare type ProjectTargetPlatform = string;
|
6455
6781
|
|
6456
6782
|
/** A task resource */
|
6457
|
-
export declare
|
6783
|
+
export declare interface ProjectTask extends Resource {
|
6458
6784
|
/** HTTP strong entity tag value. This is ignored if submitted. */
|
6459
6785
|
etag?: string;
|
6460
6786
|
/** Custom task properties */
|
@@ -6464,7 +6790,7 @@ export declare type ProjectTask = Resource & {
|
|
6464
6790
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
6465
6791
|
*/
|
6466
6792
|
readonly systemData?: SystemData;
|
6467
|
-
}
|
6793
|
+
}
|
6468
6794
|
|
6469
6795
|
/** Base class for all types of DMS task properties. If task is not supported by current client, this object is returned. */
|
6470
6796
|
export declare interface ProjectTaskProperties {
|
@@ -7560,7 +7886,7 @@ export declare interface SqlBackupSetInfo {
|
|
7560
7886
|
}
|
7561
7887
|
|
7562
7888
|
/** Information for connecting to SQL database server */
|
7563
|
-
export declare
|
7889
|
+
export declare interface SqlConnectionInfo extends ConnectionInfo {
|
7564
7890
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
7565
7891
|
type: "SqlConnectionInfo";
|
7566
7892
|
/** Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber */
|
@@ -7581,7 +7907,7 @@ export declare type SqlConnectionInfo = ConnectionInfo & {
|
|
7581
7907
|
trustServerCertificate?: boolean;
|
7582
7908
|
/** Server platform type for connection */
|
7583
7909
|
platform?: SqlSourcePlatform;
|
7584
|
-
}
|
7910
|
+
}
|
7585
7911
|
|
7586
7912
|
/** Source SQL Connection */
|
7587
7913
|
export declare interface SqlConnectionInformation {
|
@@ -7618,7 +7944,7 @@ export declare interface SqlMigrationListResult {
|
|
7618
7944
|
}
|
7619
7945
|
|
7620
7946
|
/** A SQL Migration Service. */
|
7621
|
-
export declare
|
7947
|
+
export declare interface SqlMigrationService extends TrackedResource {
|
7622
7948
|
/**
|
7623
7949
|
* Provisioning state to track the async operation status.
|
7624
7950
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
@@ -7629,7 +7955,7 @@ export declare type SqlMigrationService = TrackedResource & {
|
|
7629
7955
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
7630
7956
|
*/
|
7631
7957
|
readonly integrationRuntimeState?: string;
|
7632
|
-
}
|
7958
|
+
}
|
7633
7959
|
|
7634
7960
|
/** Interface representing a SqlMigrationServices. */
|
7635
7961
|
export declare interface SqlMigrationServices {
|
@@ -8291,7 +8617,7 @@ export declare interface UploadOCIDriverTaskOutput {
|
|
8291
8617
|
}
|
8292
8618
|
|
8293
8619
|
/** Properties for the task that uploads an OCI driver. */
|
8294
|
-
export declare
|
8620
|
+
export declare interface UploadOCIDriverTaskProperties extends ProjectTaskProperties {
|
8295
8621
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
8296
8622
|
taskType: "Service.Upload.OCI";
|
8297
8623
|
/** Input for the service task to upload an OCI driver. */
|
@@ -8301,7 +8627,7 @@ export declare type UploadOCIDriverTaskProperties = ProjectTaskProperties & {
|
|
8301
8627
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
8302
8628
|
*/
|
8303
8629
|
readonly output?: UploadOCIDriverTaskOutput[];
|
8304
|
-
}
|
8630
|
+
}
|
8305
8631
|
|
8306
8632
|
/** Interface representing a Usages. */
|
8307
8633
|
export declare interface Usages {
|
@@ -8329,7 +8655,7 @@ export declare interface UsagesListOptionalParams extends coreClient.OperationOp
|
|
8329
8655
|
export declare type UsagesListResponse = QuotaList;
|
8330
8656
|
|
8331
8657
|
/** Properties for task that validates migration input for SQL to Azure SQL DB sync migrations */
|
8332
|
-
export declare
|
8658
|
+
export declare interface ValidateMigrationInputSqlServerSqlDbSyncTaskProperties extends ProjectTaskProperties {
|
8333
8659
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
8334
8660
|
taskType: "ValidateMigrationInput.SqlServer.SqlDb.Sync";
|
8335
8661
|
/** Task input */
|
@@ -8339,10 +8665,11 @@ export declare type ValidateMigrationInputSqlServerSqlDbSyncTaskProperties = Pro
|
|
8339
8665
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
8340
8666
|
*/
|
8341
8667
|
readonly output?: ValidateSyncMigrationInputSqlServerTaskOutput[];
|
8342
|
-
}
|
8668
|
+
}
|
8343
8669
|
|
8344
8670
|
/** Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance online scenario. */
|
8345
|
-
export declare
|
8671
|
+
export declare interface ValidateMigrationInputSqlServerSqlMISyncTaskInput extends SqlServerSqlMISyncTaskInput {
|
8672
|
+
}
|
8346
8673
|
|
8347
8674
|
/** Output for task that validates migration input for Azure SQL Database Managed Instance online migration */
|
8348
8675
|
export declare interface ValidateMigrationInputSqlServerSqlMISyncTaskOutput {
|
@@ -8364,7 +8691,7 @@ export declare interface ValidateMigrationInputSqlServerSqlMISyncTaskOutput {
|
|
8364
8691
|
}
|
8365
8692
|
|
8366
8693
|
/** Properties for task that validates migration input for SQL to Azure SQL Database Managed Instance sync scenario */
|
8367
|
-
export declare
|
8694
|
+
export declare interface ValidateMigrationInputSqlServerSqlMISyncTaskProperties extends ProjectTaskProperties {
|
8368
8695
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
8369
8696
|
taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS";
|
8370
8697
|
/** Task input */
|
@@ -8374,7 +8701,7 @@ export declare type ValidateMigrationInputSqlServerSqlMISyncTaskProperties = Pro
|
|
8374
8701
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
8375
8702
|
*/
|
8376
8703
|
readonly output?: ValidateMigrationInputSqlServerSqlMISyncTaskOutput[];
|
8377
|
-
}
|
8704
|
+
}
|
8378
8705
|
|
8379
8706
|
/** Input for task that validates migration input for SQL to Azure SQL Managed Instance */
|
8380
8707
|
export declare interface ValidateMigrationInputSqlServerSqlMITaskInput {
|
@@ -8436,7 +8763,7 @@ export declare interface ValidateMigrationInputSqlServerSqlMITaskOutput {
|
|
8436
8763
|
}
|
8437
8764
|
|
8438
8765
|
/** Properties for task that validates migration input for SQL to Azure SQL Database Managed Instance */
|
8439
|
-
export declare
|
8766
|
+
export declare interface ValidateMigrationInputSqlServerSqlMITaskProperties extends ProjectTaskProperties {
|
8440
8767
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
8441
8768
|
taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI";
|
8442
8769
|
/** Task input */
|
@@ -8446,10 +8773,10 @@ export declare type ValidateMigrationInputSqlServerSqlMITaskProperties = Project
|
|
8446
8773
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
8447
8774
|
*/
|
8448
8775
|
readonly output?: ValidateMigrationInputSqlServerSqlMITaskOutput[];
|
8449
|
-
}
|
8776
|
+
}
|
8450
8777
|
|
8451
8778
|
/** Properties for the task that validates a migration between MongoDB data sources */
|
8452
|
-
export declare
|
8779
|
+
export declare interface ValidateMongoDbTaskProperties extends ProjectTaskProperties {
|
8453
8780
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
8454
8781
|
taskType: "Validate.MongoDb";
|
8455
8782
|
/** Describes how a MongoDB data migration should be performed */
|
@@ -8459,10 +8786,10 @@ export declare type ValidateMongoDbTaskProperties = ProjectTaskProperties & {
|
|
8459
8786
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
8460
8787
|
*/
|
8461
8788
|
readonly output?: MongoDbMigrationProgress[];
|
8462
|
-
}
|
8789
|
+
}
|
8463
8790
|
|
8464
8791
|
/** Properties for the task that validates a migration for Oracle to Azure Database for PostgreSQL for online migrations */
|
8465
|
-
export declare
|
8792
|
+
export declare interface ValidateOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
|
8466
8793
|
/** Polymorphic discriminator, which specifies the different types this object can be */
|
8467
8794
|
taskType: "Validate.Oracle.AzureDbPostgreSql.Sync";
|
8468
8795
|
/** Input for the task that migrates Oracle databases to Azure Database for PostgreSQL for online migrations */
|
@@ -8472,7 +8799,7 @@ export declare type ValidateOracleAzureDbForPostgreSqlSyncTaskProperties = Proje
|
|
8472
8799
|
* NOTE: This property will not be serialized. It can only be populated by the server.
|
8473
8800
|
*/
|
8474
8801
|
readonly output?: ValidateOracleAzureDbPostgreSqlSyncTaskOutput[];
|
8475
|
-
}
|
8802
|
+
}
|
8476
8803
|
|
8477
8804
|
/** Output for task that validates migration input for Oracle to Azure Database for PostgreSQL for online migrations */
|
8478
8805
|
export declare interface ValidateOracleAzureDbPostgreSqlSyncTaskOutput {
|