@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.
Files changed (72) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/README.md +1 -1
  3. package/dist/index.js +630 -110
  4. package/dist/index.js.map +1 -1
  5. package/dist/index.min.js +1 -1
  6. package/dist/index.min.js.map +1 -1
  7. package/dist-esm/samples-dev/databaseMigrationsSqlMiCreateOrUpdateSample.js +2 -2
  8. package/dist-esm/samples-dev/databaseMigrationsSqlMiCreateOrUpdateSample.js.map +1 -1
  9. package/dist-esm/samples-dev/databaseMigrationsSqlVMCreateOrUpdateSample.js +2 -2
  10. package/dist-esm/samples-dev/databaseMigrationsSqlVMCreateOrUpdateSample.js.map +1 -1
  11. package/dist-esm/src/dataMigrationManagementClient.d.ts +2 -0
  12. package/dist-esm/src/dataMigrationManagementClient.d.ts.map +1 -1
  13. package/dist-esm/src/dataMigrationManagementClient.js +49 -18
  14. package/dist-esm/src/dataMigrationManagementClient.js.map +1 -1
  15. package/dist-esm/src/index.d.ts +1 -0
  16. package/dist-esm/src/index.d.ts.map +1 -1
  17. package/dist-esm/src/index.js +1 -0
  18. package/dist-esm/src/index.js.map +1 -1
  19. package/dist-esm/src/models/index.d.ts +556 -240
  20. package/dist-esm/src/models/index.d.ts.map +1 -1
  21. package/dist-esm/src/models/index.js +314 -0
  22. package/dist-esm/src/models/index.js.map +1 -1
  23. package/dist-esm/src/operations/files.d.ts.map +1 -1
  24. package/dist-esm/src/operations/files.js +19 -7
  25. package/dist-esm/src/operations/files.js.map +1 -1
  26. package/dist-esm/src/operations/operations.d.ts.map +1 -1
  27. package/dist-esm/src/operations/operations.js +19 -7
  28. package/dist-esm/src/operations/operations.js.map +1 -1
  29. package/dist-esm/src/operations/projects.d.ts.map +1 -1
  30. package/dist-esm/src/operations/projects.js +19 -7
  31. package/dist-esm/src/operations/projects.js.map +1 -1
  32. package/dist-esm/src/operations/resourceSkus.d.ts.map +1 -1
  33. package/dist-esm/src/operations/resourceSkus.js +19 -7
  34. package/dist-esm/src/operations/resourceSkus.js.map +1 -1
  35. package/dist-esm/src/operations/serviceTasks.d.ts.map +1 -1
  36. package/dist-esm/src/operations/serviceTasks.js +19 -7
  37. package/dist-esm/src/operations/serviceTasks.js.map +1 -1
  38. package/dist-esm/src/operations/services.d.ts.map +1 -1
  39. package/dist-esm/src/operations/services.js +55 -21
  40. package/dist-esm/src/operations/services.js.map +1 -1
  41. package/dist-esm/src/operations/sqlMigrationServices.d.ts.map +1 -1
  42. package/dist-esm/src/operations/sqlMigrationServices.js +55 -21
  43. package/dist-esm/src/operations/sqlMigrationServices.js.map +1 -1
  44. package/dist-esm/src/operations/tasks.d.ts.map +1 -1
  45. package/dist-esm/src/operations/tasks.js +19 -7
  46. package/dist-esm/src/operations/tasks.js.map +1 -1
  47. package/dist-esm/src/operations/usages.d.ts.map +1 -1
  48. package/dist-esm/src/operations/usages.js +19 -7
  49. package/dist-esm/src/operations/usages.js.map +1 -1
  50. package/dist-esm/src/pagingHelper.d.ts +13 -0
  51. package/dist-esm/src/pagingHelper.d.ts.map +1 -0
  52. package/dist-esm/src/pagingHelper.js +32 -0
  53. package/dist-esm/src/pagingHelper.js.map +1 -0
  54. package/dist-esm/test/sampleTest.js +11 -13
  55. package/dist-esm/test/sampleTest.js.map +1 -1
  56. package/package.json +14 -10
  57. package/review/arm-datamigration.api.md +564 -872
  58. package/src/dataMigrationManagementClient.ts +60 -20
  59. package/src/index.ts +1 -0
  60. package/src/models/index.ts +646 -246
  61. package/src/operations/files.ts +22 -8
  62. package/src/operations/operations.ts +21 -8
  63. package/src/operations/projects.ts +21 -8
  64. package/src/operations/resourceSkus.ts +21 -8
  65. package/src/operations/serviceTasks.ts +21 -8
  66. package/src/operations/services.ts +67 -25
  67. package/src/operations/sqlMigrationServices.ts +71 -29
  68. package/src/operations/tasks.ts +22 -8
  69. package/src/operations/usages.ts +21 -8
  70. package/src/pagingHelper.ts +39 -0
  71. package/types/arm-datamigration.d.ts +567 -240
  72. package/types/tsdoc-metadata.json +1 -1
@@ -2836,7 +2836,7 @@ export interface StartMigrationScenarioServerRoleResult {
2836
2836
  readonly exceptionsAndWarnings?: ReportableException[];
2837
2837
  }
2838
2838
  /** Database Migration Resource properties for SQL Managed Instance. */
2839
- export declare type DatabaseMigrationPropertiesSqlMi = DatabaseMigrationProperties & {
2839
+ export interface DatabaseMigrationPropertiesSqlMi extends DatabaseMigrationProperties {
2840
2840
  /** Polymorphic discriminator, which specifies the different types this object can be */
2841
2841
  kind: "SqlMi";
2842
2842
  /**
@@ -2852,9 +2852,9 @@ export declare type DatabaseMigrationPropertiesSqlMi = DatabaseMigrationProperti
2852
2852
  backupConfiguration?: BackupConfiguration;
2853
2853
  /** Offline configuration. */
2854
2854
  offlineConfiguration?: OfflineConfiguration;
2855
- };
2855
+ }
2856
2856
  /** Database Migration Resource properties for SQL Virtual Machine. */
2857
- export declare type DatabaseMigrationPropertiesSqlVm = DatabaseMigrationProperties & {
2857
+ export interface DatabaseMigrationPropertiesSqlVm extends DatabaseMigrationProperties {
2858
2858
  /** Polymorphic discriminator, which specifies the different types this object can be */
2859
2859
  kind: "SqlVm";
2860
2860
  /**
@@ -2870,9 +2870,9 @@ export declare type DatabaseMigrationPropertiesSqlVm = DatabaseMigrationProperti
2870
2870
  backupConfiguration?: BackupConfiguration;
2871
2871
  /** Offline configuration. */
2872
2872
  offlineConfiguration?: OfflineConfiguration;
2873
- };
2873
+ }
2874
2874
  /** Database Migration Resource for SQL Managed Instance. */
2875
- export declare type DatabaseMigrationSqlMi = ProxyResource & {
2875
+ export interface DatabaseMigrationSqlMi extends ProxyResource {
2876
2876
  /**
2877
2877
  * Metadata pertaining to creation and last modification of the resource.
2878
2878
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -2880,9 +2880,9 @@ export declare type DatabaseMigrationSqlMi = ProxyResource & {
2880
2880
  readonly systemData?: SystemData;
2881
2881
  /** Database Migration Resource properties for SQL Managed Instance. */
2882
2882
  properties?: DatabaseMigrationPropertiesSqlMi;
2883
- };
2883
+ }
2884
2884
  /** Database Migration Resource for SQL Virtual Machine. */
2885
- export declare type DatabaseMigrationSqlVm = ProxyResource & {
2885
+ export interface DatabaseMigrationSqlVm extends ProxyResource {
2886
2886
  /**
2887
2887
  * Metadata pertaining to creation and last modification of the resource.
2888
2888
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -2890,9 +2890,9 @@ export declare type DatabaseMigrationSqlVm = ProxyResource & {
2890
2890
  readonly systemData?: SystemData;
2891
2891
  /** Database Migration Resource properties for SQL Virtual Machine. */
2892
2892
  properties?: DatabaseMigrationPropertiesSqlVm;
2893
- };
2893
+ }
2894
2894
  /** Database Migration Resource. */
2895
- export declare type DatabaseMigration = ProxyResource & {
2895
+ export interface DatabaseMigration extends ProxyResource {
2896
2896
  /**
2897
2897
  * Metadata pertaining to creation and last modification of the resource.
2898
2898
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -2900,9 +2900,9 @@ export declare type DatabaseMigration = ProxyResource & {
2900
2900
  readonly systemData?: SystemData;
2901
2901
  /** Database Migration Resource properties. */
2902
2902
  properties?: DatabaseMigrationPropertiesUnion;
2903
- };
2903
+ }
2904
2904
  /** A SQL Migration Service. */
2905
- export declare type SqlMigrationService = TrackedResource & {
2905
+ export interface SqlMigrationService extends TrackedResource {
2906
2906
  /**
2907
2907
  * Provisioning state to track the async operation status.
2908
2908
  * NOTE: This property will not be serialized. It can only be populated by the server.
@@ -2913,9 +2913,9 @@ export declare type SqlMigrationService = TrackedResource & {
2913
2913
  * NOTE: This property will not be serialized. It can only be populated by the server.
2914
2914
  */
2915
2915
  readonly integrationRuntimeState?: string;
2916
- };
2916
+ }
2917
2917
  /** A Database Migration Service resource */
2918
- export declare type DataMigrationService = TrackedResource & {
2918
+ export interface DataMigrationService extends TrackedResource {
2919
2919
  /** HTTP strong entity tag value. Ignored if submitted */
2920
2920
  etag?: string;
2921
2921
  /** The resource kind. Only 'vm' (the default) is supported. */
@@ -2937,9 +2937,9 @@ export declare type DataMigrationService = TrackedResource & {
2937
2937
  autoStopDelay?: string;
2938
2938
  /** Whether service resources should be deleted when stopped. (Turned on by default) */
2939
2939
  deleteResourcesOnStop?: boolean;
2940
- };
2940
+ }
2941
2941
  /** A project resource */
2942
- export declare type Project = TrackedResource & {
2942
+ export interface Project extends TrackedResource {
2943
2943
  /** HTTP strong entity tag value. This is ignored if submitted. */
2944
2944
  eTag?: string;
2945
2945
  /** Source platform for the project */
@@ -2964,9 +2964,9 @@ export declare type Project = TrackedResource & {
2964
2964
  * NOTE: This property will not be serialized. It can only be populated by the server.
2965
2965
  */
2966
2966
  readonly provisioningState?: ProjectProvisioningState;
2967
- };
2967
+ }
2968
2968
  /** Properties for task that migrates Schema for SQL Server databases to Azure SQL databases */
2969
- export declare type MigrateSchemaSqlServerSqlDbTaskProperties = ProjectTaskProperties & {
2969
+ export interface MigrateSchemaSqlServerSqlDbTaskProperties extends ProjectTaskProperties {
2970
2970
  /** Polymorphic discriminator, which specifies the different types this object can be */
2971
2971
  taskType: "MigrateSchemaSqlServerSqlDb";
2972
2972
  /** Task input */
@@ -2980,9 +2980,9 @@ export declare type MigrateSchemaSqlServerSqlDbTaskProperties = ProjectTaskPrope
2980
2980
  createdOn?: string;
2981
2981
  /** Task id */
2982
2982
  taskId?: string;
2983
- };
2983
+ }
2984
2984
  /** Properties for the task that checks for OCI drivers. */
2985
- export declare type CheckOCIDriverTaskProperties = ProjectTaskProperties & {
2985
+ export interface CheckOCIDriverTaskProperties extends ProjectTaskProperties {
2986
2986
  /** Polymorphic discriminator, which specifies the different types this object can be */
2987
2987
  taskType: "Service.Check.OCI";
2988
2988
  /** Input for the service task to check for OCI drivers. */
@@ -2992,9 +2992,9 @@ export declare type CheckOCIDriverTaskProperties = ProjectTaskProperties & {
2992
2992
  * NOTE: This property will not be serialized. It can only be populated by the server.
2993
2993
  */
2994
2994
  readonly output?: CheckOCIDriverTaskOutput[];
2995
- };
2995
+ }
2996
2996
  /** Properties for the task that uploads an OCI driver. */
2997
- export declare type UploadOCIDriverTaskProperties = ProjectTaskProperties & {
2997
+ export interface UploadOCIDriverTaskProperties extends ProjectTaskProperties {
2998
2998
  /** Polymorphic discriminator, which specifies the different types this object can be */
2999
2999
  taskType: "Service.Upload.OCI";
3000
3000
  /** Input for the service task to upload an OCI driver. */
@@ -3004,9 +3004,9 @@ export declare type UploadOCIDriverTaskProperties = ProjectTaskProperties & {
3004
3004
  * NOTE: This property will not be serialized. It can only be populated by the server.
3005
3005
  */
3006
3006
  readonly output?: UploadOCIDriverTaskOutput[];
3007
- };
3007
+ }
3008
3008
  /** Properties for the task that installs an OCI driver. */
3009
- export declare type InstallOCIDriverTaskProperties = ProjectTaskProperties & {
3009
+ export interface InstallOCIDriverTaskProperties extends ProjectTaskProperties {
3010
3010
  /** Polymorphic discriminator, which specifies the different types this object can be */
3011
3011
  taskType: "Service.Install.OCI";
3012
3012
  /** Input for the service task to install an OCI driver. */
@@ -3016,9 +3016,9 @@ export declare type InstallOCIDriverTaskProperties = ProjectTaskProperties & {
3016
3016
  * NOTE: This property will not be serialized. It can only be populated by the server.
3017
3017
  */
3018
3018
  readonly output?: InstallOCIDriverTaskOutput[];
3019
- };
3019
+ }
3020
3020
  /** Properties for the task that validates the connection to and provides information about a MongoDB server */
3021
- export declare type ConnectToMongoDbTaskProperties = ProjectTaskProperties & {
3021
+ export interface ConnectToMongoDbTaskProperties extends ProjectTaskProperties {
3022
3022
  /** Polymorphic discriminator, which specifies the different types this object can be */
3023
3023
  taskType: "Connect.MongoDb";
3024
3024
  /** Describes a connection to a MongoDB data source */
@@ -3028,9 +3028,9 @@ export declare type ConnectToMongoDbTaskProperties = ProjectTaskProperties & {
3028
3028
  * NOTE: This property will not be serialized. It can only be populated by the server.
3029
3029
  */
3030
3030
  readonly output?: MongoDbClusterInfo[];
3031
- };
3031
+ }
3032
3032
  /** Properties for the task that validates connection to SQL Server and also validates source server requirements */
3033
- export declare type ConnectToSourceSqlServerTaskProperties = ProjectTaskProperties & {
3033
+ export interface ConnectToSourceSqlServerTaskProperties extends ProjectTaskProperties {
3034
3034
  /** Polymorphic discriminator, which specifies the different types this object can be */
3035
3035
  taskType: "ConnectToSource.SqlServer";
3036
3036
  /** Task input */
@@ -3040,9 +3040,9 @@ export declare type ConnectToSourceSqlServerTaskProperties = ProjectTaskProperti
3040
3040
  * NOTE: This property will not be serialized. It can only be populated by the server.
3041
3041
  */
3042
3042
  readonly output?: ConnectToSourceSqlServerTaskOutputUnion[];
3043
- };
3043
+ }
3044
3044
  /** Properties for the task that validates connection to SQL Server and source server requirements for online migration */
3045
- export declare type ConnectToSourceSqlServerSyncTaskProperties = ProjectTaskProperties & {
3045
+ export interface ConnectToSourceSqlServerSyncTaskProperties extends ProjectTaskProperties {
3046
3046
  /** Polymorphic discriminator, which specifies the different types this object can be */
3047
3047
  taskType: "ConnectToSource.SqlServer.Sync";
3048
3048
  /** Task input */
@@ -3052,9 +3052,9 @@ export declare type ConnectToSourceSqlServerSyncTaskProperties = ProjectTaskProp
3052
3052
  * NOTE: This property will not be serialized. It can only be populated by the server.
3053
3053
  */
3054
3054
  readonly output?: ConnectToSourceSqlServerTaskOutputUnion[];
3055
- };
3055
+ }
3056
3056
  /** Properties for the task that validates connection to PostgreSQL server and source server requirements for online migration */
3057
- export declare type ConnectToSourcePostgreSqlSyncTaskProperties = ProjectTaskProperties & {
3057
+ export interface ConnectToSourcePostgreSqlSyncTaskProperties extends ProjectTaskProperties {
3058
3058
  /** Polymorphic discriminator, which specifies the different types this object can be */
3059
3059
  taskType: "ConnectToSource.PostgreSql.Sync";
3060
3060
  /** Task input */
@@ -3064,9 +3064,9 @@ export declare type ConnectToSourcePostgreSqlSyncTaskProperties = ProjectTaskPro
3064
3064
  * NOTE: This property will not be serialized. It can only be populated by the server.
3065
3065
  */
3066
3066
  readonly output?: ConnectToSourcePostgreSqlSyncTaskOutput[];
3067
- };
3067
+ }
3068
3068
  /** Properties for the task that validates MySQL database connection */
3069
- export declare type ConnectToSourceMySqlTaskProperties = ProjectTaskProperties & {
3069
+ export interface ConnectToSourceMySqlTaskProperties extends ProjectTaskProperties {
3070
3070
  /** Polymorphic discriminator, which specifies the different types this object can be */
3071
3071
  taskType: "ConnectToSource.MySql";
3072
3072
  /** Task input */
@@ -3076,9 +3076,9 @@ export declare type ConnectToSourceMySqlTaskProperties = ProjectTaskProperties &
3076
3076
  * NOTE: This property will not be serialized. It can only be populated by the server.
3077
3077
  */
3078
3078
  readonly output?: ConnectToSourceNonSqlTaskOutput[];
3079
- };
3079
+ }
3080
3080
  /** Properties for the task that validates Oracle database connection */
3081
- export declare type ConnectToSourceOracleSyncTaskProperties = ProjectTaskProperties & {
3081
+ export interface ConnectToSourceOracleSyncTaskProperties extends ProjectTaskProperties {
3082
3082
  /** Polymorphic discriminator, which specifies the different types this object can be */
3083
3083
  taskType: "ConnectToSource.Oracle.Sync";
3084
3084
  /** Task input */
@@ -3088,9 +3088,9 @@ export declare type ConnectToSourceOracleSyncTaskProperties = ProjectTaskPropert
3088
3088
  * NOTE: This property will not be serialized. It can only be populated by the server.
3089
3089
  */
3090
3090
  readonly output?: ConnectToSourceOracleSyncTaskOutput[];
3091
- };
3091
+ }
3092
3092
  /** Properties for the task that validates connection to SQL DB and target server requirements */
3093
- export declare type ConnectToTargetSqlDbTaskProperties = ProjectTaskProperties & {
3093
+ export interface ConnectToTargetSqlDbTaskProperties extends ProjectTaskProperties {
3094
3094
  /** Polymorphic discriminator, which specifies the different types this object can be */
3095
3095
  taskType: "ConnectToTarget.SqlDb";
3096
3096
  /** Task input */
@@ -3100,9 +3100,9 @@ export declare type ConnectToTargetSqlDbTaskProperties = ProjectTaskProperties &
3100
3100
  * NOTE: This property will not be serialized. It can only be populated by the server.
3101
3101
  */
3102
3102
  readonly output?: ConnectToTargetSqlDbTaskOutput[];
3103
- };
3103
+ }
3104
3104
  /** Properties for the task that validates connection to SQL DB and target server requirements for online migration */
3105
- export declare type ConnectToTargetSqlDbSyncTaskProperties = ProjectTaskProperties & {
3105
+ export interface ConnectToTargetSqlDbSyncTaskProperties extends ProjectTaskProperties {
3106
3106
  /** Polymorphic discriminator, which specifies the different types this object can be */
3107
3107
  taskType: "ConnectToTarget.SqlDb.Sync";
3108
3108
  /** Task input */
@@ -3112,9 +3112,9 @@ export declare type ConnectToTargetSqlDbSyncTaskProperties = ProjectTaskProperti
3112
3112
  * NOTE: This property will not be serialized. It can only be populated by the server.
3113
3113
  */
3114
3114
  readonly output?: ConnectToTargetSqlDbTaskOutput[];
3115
- };
3115
+ }
3116
3116
  /** Properties for the task that validates connection to Azure Database For PostgreSQL server and target server requirements for online migration */
3117
- export declare type ConnectToTargetAzureDbForPostgreSqlSyncTaskProperties = ProjectTaskProperties & {
3117
+ export interface ConnectToTargetAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
3118
3118
  /** Polymorphic discriminator, which specifies the different types this object can be */
3119
3119
  taskType: "ConnectToTarget.AzureDbForPostgreSql.Sync";
3120
3120
  /** Task input */
@@ -3124,9 +3124,9 @@ export declare type ConnectToTargetAzureDbForPostgreSqlSyncTaskProperties = Proj
3124
3124
  * NOTE: This property will not be serialized. It can only be populated by the server.
3125
3125
  */
3126
3126
  readonly output?: ConnectToTargetAzureDbForPostgreSqlSyncTaskOutput[];
3127
- };
3127
+ }
3128
3128
  /** Properties for the task that validates connection to Azure Database For PostgreSQL server and target server requirements for online migration for Oracle source. */
3129
- export declare type ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskProperties = ProjectTaskProperties & {
3129
+ export interface ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
3130
3130
  /** Polymorphic discriminator, which specifies the different types this object can be */
3131
3131
  taskType: "ConnectToTarget.Oracle.AzureDbForPostgreSql.Sync";
3132
3132
  /** Task input */
@@ -3136,9 +3136,9 @@ export declare type ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskProperties
3136
3136
  * NOTE: This property will not be serialized. It can only be populated by the server.
3137
3137
  */
3138
3138
  readonly output?: ConnectToTargetOracleAzureDbForPostgreSqlSyncTaskOutput[];
3139
- };
3139
+ }
3140
3140
  /** Properties for the task that collects user tables for the given list of databases */
3141
- export declare type GetUserTablesSqlTaskProperties = ProjectTaskProperties & {
3141
+ export interface GetUserTablesSqlTaskProperties extends ProjectTaskProperties {
3142
3142
  /** Polymorphic discriminator, which specifies the different types this object can be */
3143
3143
  taskType: "GetUserTables.Sql";
3144
3144
  /** Task input */
@@ -3148,9 +3148,9 @@ export declare type GetUserTablesSqlTaskProperties = ProjectTaskProperties & {
3148
3148
  * NOTE: This property will not be serialized. It can only be populated by the server.
3149
3149
  */
3150
3150
  readonly output?: GetUserTablesSqlTaskOutput[];
3151
- };
3151
+ }
3152
3152
  /** Properties for the task that collects user tables for the given list of databases */
3153
- export declare type GetUserTablesSqlSyncTaskProperties = ProjectTaskProperties & {
3153
+ export interface GetUserTablesSqlSyncTaskProperties extends ProjectTaskProperties {
3154
3154
  /** Polymorphic discriminator, which specifies the different types this object can be */
3155
3155
  taskType: "GetUserTables.AzureSqlDb.Sync";
3156
3156
  /** Task input */
@@ -3160,9 +3160,9 @@ export declare type GetUserTablesSqlSyncTaskProperties = ProjectTaskProperties &
3160
3160
  * NOTE: This property will not be serialized. It can only be populated by the server.
3161
3161
  */
3162
3162
  readonly output?: GetUserTablesSqlSyncTaskOutput[];
3163
- };
3163
+ }
3164
3164
  /** Properties for the task that collects user tables for the given list of Oracle schemas */
3165
- export declare type GetUserTablesOracleTaskProperties = ProjectTaskProperties & {
3165
+ export interface GetUserTablesOracleTaskProperties extends ProjectTaskProperties {
3166
3166
  /** Polymorphic discriminator, which specifies the different types this object can be */
3167
3167
  taskType: "GetUserTablesOracle";
3168
3168
  /** Task input */
@@ -3172,9 +3172,9 @@ export declare type GetUserTablesOracleTaskProperties = ProjectTaskProperties &
3172
3172
  * NOTE: This property will not be serialized. It can only be populated by the server.
3173
3173
  */
3174
3174
  readonly output?: GetUserTablesOracleTaskOutput[];
3175
- };
3175
+ }
3176
3176
  /** Properties for the task that collects user tables for the given list of databases */
3177
- export declare type GetUserTablesPostgreSqlTaskProperties = ProjectTaskProperties & {
3177
+ export interface GetUserTablesPostgreSqlTaskProperties extends ProjectTaskProperties {
3178
3178
  /** Polymorphic discriminator, which specifies the different types this object can be */
3179
3179
  taskType: "GetUserTablesPostgreSql";
3180
3180
  /** Task input */
@@ -3184,9 +3184,9 @@ export declare type GetUserTablesPostgreSqlTaskProperties = ProjectTaskPropertie
3184
3184
  * NOTE: This property will not be serialized. It can only be populated by the server.
3185
3185
  */
3186
3186
  readonly output?: GetUserTablesPostgreSqlTaskOutput[];
3187
- };
3187
+ }
3188
3188
  /** Properties for the task that collects user tables for the given list of databases */
3189
- export declare type GetUserTablesMySqlTaskProperties = ProjectTaskProperties & {
3189
+ export interface GetUserTablesMySqlTaskProperties extends ProjectTaskProperties {
3190
3190
  /** Polymorphic discriminator, which specifies the different types this object can be */
3191
3191
  taskType: "GetUserTablesMySql";
3192
3192
  /** Task input */
@@ -3196,9 +3196,9 @@ export declare type GetUserTablesMySqlTaskProperties = ProjectTaskProperties & {
3196
3196
  * NOTE: This property will not be serialized. It can only be populated by the server.
3197
3197
  */
3198
3198
  readonly output?: GetUserTablesMySqlTaskOutput[];
3199
- };
3199
+ }
3200
3200
  /** Properties for the task that validates connection to Azure SQL Database Managed Instance */
3201
- export declare type ConnectToTargetSqlMITaskProperties = ProjectTaskProperties & {
3201
+ export interface ConnectToTargetSqlMITaskProperties extends ProjectTaskProperties {
3202
3202
  /** Polymorphic discriminator, which specifies the different types this object can be */
3203
3203
  taskType: "ConnectToTarget.AzureSqlDbMI";
3204
3204
  /** Task input */
@@ -3208,9 +3208,9 @@ export declare type ConnectToTargetSqlMITaskProperties = ProjectTaskProperties &
3208
3208
  * NOTE: This property will not be serialized. It can only be populated by the server.
3209
3209
  */
3210
3210
  readonly output?: ConnectToTargetSqlMITaskOutput[];
3211
- };
3211
+ }
3212
3212
  /** Properties for the task that validates connection to Azure SQL Database Managed Instance */
3213
- export declare type ConnectToTargetSqlMISyncTaskProperties = ProjectTaskProperties & {
3213
+ export interface ConnectToTargetSqlMISyncTaskProperties extends ProjectTaskProperties {
3214
3214
  /** Polymorphic discriminator, which specifies the different types this object can be */
3215
3215
  taskType: "ConnectToTarget.AzureSqlDbMI.Sync.LRS";
3216
3216
  /** Task input */
@@ -3220,9 +3220,9 @@ export declare type ConnectToTargetSqlMISyncTaskProperties = ProjectTaskProperti
3220
3220
  * NOTE: This property will not be serialized. It can only be populated by the server.
3221
3221
  */
3222
3222
  readonly output?: ConnectToTargetSqlMISyncTaskOutput[];
3223
- };
3223
+ }
3224
3224
  /** Properties for the task that validates connection to Azure Database for MySQL and target server requirements */
3225
- export declare type ConnectToTargetAzureDbForMySqlTaskProperties = ProjectTaskProperties & {
3225
+ export interface ConnectToTargetAzureDbForMySqlTaskProperties extends ProjectTaskProperties {
3226
3226
  /** Polymorphic discriminator, which specifies the different types this object can be */
3227
3227
  taskType: "ConnectToTarget.AzureDbForMySql";
3228
3228
  /** Task input */
@@ -3232,18 +3232,18 @@ export declare type ConnectToTargetAzureDbForMySqlTaskProperties = ProjectTaskPr
3232
3232
  * NOTE: This property will not be serialized. It can only be populated by the server.
3233
3233
  */
3234
3234
  readonly output?: ConnectToTargetAzureDbForMySqlTaskOutput[];
3235
- };
3235
+ }
3236
3236
  /** Properties for the task that migrates data between MongoDB data sources */
3237
- export declare type MigrateMongoDbTaskProperties = ProjectTaskProperties & {
3237
+ export interface MigrateMongoDbTaskProperties extends ProjectTaskProperties {
3238
3238
  /** Polymorphic discriminator, which specifies the different types this object can be */
3239
3239
  taskType: "Migrate.MongoDb";
3240
3240
  /** Describes how a MongoDB data migration should be performed */
3241
3241
  input?: MongoDbMigrationSettings;
3242
3242
  /** NOTE: This property will not be serialized. It can only be populated by the server. */
3243
3243
  readonly output?: MongoDbProgressUnion[];
3244
- };
3244
+ }
3245
3245
  /** Properties for task that migrates SQL Server databases to Azure SQL Database Managed Instance */
3246
- export declare type MigrateSqlServerSqlMITaskProperties = ProjectTaskProperties & {
3246
+ export interface MigrateSqlServerSqlMITaskProperties extends ProjectTaskProperties {
3247
3247
  /** Polymorphic discriminator, which specifies the different types this object can be */
3248
3248
  taskType: "Migrate.SqlServer.AzureSqlDbMI";
3249
3249
  /** Task input */
@@ -3255,9 +3255,9 @@ export declare type MigrateSqlServerSqlMITaskProperties = ProjectTaskProperties
3255
3255
  readonly output?: MigrateSqlServerSqlMITaskOutputUnion[];
3256
3256
  /** task id */
3257
3257
  taskId?: string;
3258
- };
3258
+ }
3259
3259
  /** Properties for task that migrates SQL Server databases to Azure SQL Database Managed Instance sync scenario */
3260
- export declare type MigrateSqlServerSqlMISyncTaskProperties = ProjectTaskProperties & {
3260
+ export interface MigrateSqlServerSqlMISyncTaskProperties extends ProjectTaskProperties {
3261
3261
  /** Polymorphic discriminator, which specifies the different types this object can be */
3262
3262
  taskType: "Migrate.SqlServer.AzureSqlDbMI.Sync.LRS";
3263
3263
  /** Task input */
@@ -3267,9 +3267,9 @@ export declare type MigrateSqlServerSqlMISyncTaskProperties = ProjectTaskPropert
3267
3267
  * NOTE: This property will not be serialized. It can only be populated by the server.
3268
3268
  */
3269
3269
  readonly output?: MigrateSqlServerSqlMISyncTaskOutputUnion[];
3270
- };
3270
+ }
3271
3271
  /** Properties for the task that migrates on-prem SQL Server databases to Azure SQL Database */
3272
- export declare type MigrateSqlServerSqlDbTaskProperties = ProjectTaskProperties & {
3272
+ export interface MigrateSqlServerSqlDbTaskProperties extends ProjectTaskProperties {
3273
3273
  /** Polymorphic discriminator, which specifies the different types this object can be */
3274
3274
  taskType: "Migrate.SqlServer.SqlDb";
3275
3275
  /** Task input */
@@ -3283,9 +3283,9 @@ export declare type MigrateSqlServerSqlDbTaskProperties = ProjectTaskProperties
3283
3283
  taskId?: string;
3284
3284
  /** whether the task can be cloned or not */
3285
3285
  isCloneable?: boolean;
3286
- };
3286
+ }
3287
3287
  /** Properties for the task that migrates on-prem SQL Server databases to Azure SQL Database for online migrations */
3288
- export declare type MigrateSqlServerSqlDbSyncTaskProperties = ProjectTaskProperties & {
3288
+ export interface MigrateSqlServerSqlDbSyncTaskProperties extends ProjectTaskProperties {
3289
3289
  /** Polymorphic discriminator, which specifies the different types this object can be */
3290
3290
  taskType: "Migrate.SqlServer.AzureSqlDb.Sync";
3291
3291
  /** Task input */
@@ -3295,9 +3295,9 @@ export declare type MigrateSqlServerSqlDbSyncTaskProperties = ProjectTaskPropert
3295
3295
  * NOTE: This property will not be serialized. It can only be populated by the server.
3296
3296
  */
3297
3297
  readonly output?: MigrateSqlServerSqlDbSyncTaskOutputUnion[];
3298
- };
3298
+ }
3299
3299
  /** Properties for the task that migrates MySQL databases to Azure Database for MySQL for online migrations */
3300
- export declare type MigrateMySqlAzureDbForMySqlSyncTaskProperties = ProjectTaskProperties & {
3300
+ export interface MigrateMySqlAzureDbForMySqlSyncTaskProperties extends ProjectTaskProperties {
3301
3301
  /** Polymorphic discriminator, which specifies the different types this object can be */
3302
3302
  taskType: "Migrate.MySql.AzureDbForMySql.Sync";
3303
3303
  /** Task input */
@@ -3307,9 +3307,9 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskProperties = ProjectTaskP
3307
3307
  * NOTE: This property will not be serialized. It can only be populated by the server.
3308
3308
  */
3309
3309
  readonly output?: MigrateMySqlAzureDbForMySqlSyncTaskOutputUnion[];
3310
- };
3310
+ }
3311
3311
  /** Properties for the task that migrates MySQL databases to Azure Database for MySQL for offline migrations */
3312
- export declare type MigrateMySqlAzureDbForMySqlOfflineTaskProperties = ProjectTaskProperties & {
3312
+ export interface MigrateMySqlAzureDbForMySqlOfflineTaskProperties extends ProjectTaskProperties {
3313
3313
  /** Polymorphic discriminator, which specifies the different types this object can be */
3314
3314
  taskType: "Migrate.MySql.AzureDbForMySql";
3315
3315
  /** Task input */
@@ -3319,9 +3319,9 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskProperties = ProjectTa
3319
3319
  * NOTE: This property will not be serialized. It can only be populated by the server.
3320
3320
  */
3321
3321
  readonly output?: MigrateMySqlAzureDbForMySqlOfflineTaskOutputUnion[];
3322
- };
3322
+ }
3323
3323
  /** Properties for the task that migrates PostgreSQL databases to Azure Database for PostgreSQL for online migrations */
3324
- export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskProperties = ProjectTaskProperties & {
3324
+ export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
3325
3325
  /** Polymorphic discriminator, which specifies the different types this object can be */
3326
3326
  taskType: "Migrate.PostgreSql.AzureDbForPostgreSql.SyncV2";
3327
3327
  /** Task input */
@@ -3335,9 +3335,9 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskProperties = Pr
3335
3335
  taskId?: string;
3336
3336
  /** DateTime in UTC when the task was created */
3337
3337
  createdOn?: string;
3338
- };
3338
+ }
3339
3339
  /** Properties for the task that migrates Oracle to Azure Database for PostgreSQL for online migrations */
3340
- export declare type MigrateOracleAzureDbForPostgreSqlSyncTaskProperties = ProjectTaskProperties & {
3340
+ export interface MigrateOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
3341
3341
  /** Polymorphic discriminator, which specifies the different types this object can be */
3342
3342
  taskType: "Migrate.Oracle.AzureDbForPostgreSql.Sync";
3343
3343
  /** Task input */
@@ -3347,9 +3347,9 @@ export declare type MigrateOracleAzureDbForPostgreSqlSyncTaskProperties = Projec
3347
3347
  * NOTE: This property will not be serialized. It can only be populated by the server.
3348
3348
  */
3349
3349
  readonly output?: MigrateOracleAzureDbPostgreSqlSyncTaskOutputUnion[];
3350
- };
3350
+ }
3351
3351
  /** Properties for task that validates migration input for SQL to Azure SQL DB sync migrations */
3352
- export declare type ValidateMigrationInputSqlServerSqlDbSyncTaskProperties = ProjectTaskProperties & {
3352
+ export interface ValidateMigrationInputSqlServerSqlDbSyncTaskProperties extends ProjectTaskProperties {
3353
3353
  /** Polymorphic discriminator, which specifies the different types this object can be */
3354
3354
  taskType: "ValidateMigrationInput.SqlServer.SqlDb.Sync";
3355
3355
  /** Task input */
@@ -3359,9 +3359,9 @@ export declare type ValidateMigrationInputSqlServerSqlDbSyncTaskProperties = Pro
3359
3359
  * NOTE: This property will not be serialized. It can only be populated by the server.
3360
3360
  */
3361
3361
  readonly output?: ValidateSyncMigrationInputSqlServerTaskOutput[];
3362
- };
3362
+ }
3363
3363
  /** Properties for task that validates migration input for SQL to Azure SQL Database Managed Instance */
3364
- export declare type ValidateMigrationInputSqlServerSqlMITaskProperties = ProjectTaskProperties & {
3364
+ export interface ValidateMigrationInputSqlServerSqlMITaskProperties extends ProjectTaskProperties {
3365
3365
  /** Polymorphic discriminator, which specifies the different types this object can be */
3366
3366
  taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI";
3367
3367
  /** Task input */
@@ -3371,9 +3371,9 @@ export declare type ValidateMigrationInputSqlServerSqlMITaskProperties = Project
3371
3371
  * NOTE: This property will not be serialized. It can only be populated by the server.
3372
3372
  */
3373
3373
  readonly output?: ValidateMigrationInputSqlServerSqlMITaskOutput[];
3374
- };
3374
+ }
3375
3375
  /** Properties for task that validates migration input for SQL to Azure SQL Database Managed Instance sync scenario */
3376
- export declare type ValidateMigrationInputSqlServerSqlMISyncTaskProperties = ProjectTaskProperties & {
3376
+ export interface ValidateMigrationInputSqlServerSqlMISyncTaskProperties extends ProjectTaskProperties {
3377
3377
  /** Polymorphic discriminator, which specifies the different types this object can be */
3378
3378
  taskType: "ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS";
3379
3379
  /** Task input */
@@ -3383,9 +3383,9 @@ export declare type ValidateMigrationInputSqlServerSqlMISyncTaskProperties = Pro
3383
3383
  * NOTE: This property will not be serialized. It can only be populated by the server.
3384
3384
  */
3385
3385
  readonly output?: ValidateMigrationInputSqlServerSqlMISyncTaskOutput[];
3386
- };
3386
+ }
3387
3387
  /** Properties for the task that validates a migration between MongoDB data sources */
3388
- export declare type ValidateMongoDbTaskProperties = ProjectTaskProperties & {
3388
+ export interface ValidateMongoDbTaskProperties extends ProjectTaskProperties {
3389
3389
  /** Polymorphic discriminator, which specifies the different types this object can be */
3390
3390
  taskType: "Validate.MongoDb";
3391
3391
  /** Describes how a MongoDB data migration should be performed */
@@ -3395,9 +3395,9 @@ export declare type ValidateMongoDbTaskProperties = ProjectTaskProperties & {
3395
3395
  * NOTE: This property will not be serialized. It can only be populated by the server.
3396
3396
  */
3397
3397
  readonly output?: MongoDbMigrationProgress[];
3398
- };
3398
+ }
3399
3399
  /** Properties for the task that validates a migration for Oracle to Azure Database for PostgreSQL for online migrations */
3400
- export declare type ValidateOracleAzureDbForPostgreSqlSyncTaskProperties = ProjectTaskProperties & {
3400
+ export interface ValidateOracleAzureDbForPostgreSqlSyncTaskProperties extends ProjectTaskProperties {
3401
3401
  /** Polymorphic discriminator, which specifies the different types this object can be */
3402
3402
  taskType: "Validate.Oracle.AzureDbPostgreSql.Sync";
3403
3403
  /** Input for the task that migrates Oracle databases to Azure Database for PostgreSQL for online migrations */
@@ -3407,9 +3407,9 @@ export declare type ValidateOracleAzureDbForPostgreSqlSyncTaskProperties = Proje
3407
3407
  * NOTE: This property will not be serialized. It can only be populated by the server.
3408
3408
  */
3409
3409
  readonly output?: ValidateOracleAzureDbPostgreSqlSyncTaskOutput[];
3410
- };
3410
+ }
3411
3411
  /** Properties for the task that gets TDE certificates in Base64 encoded format. */
3412
- export declare type GetTdeCertificatesSqlTaskProperties = ProjectTaskProperties & {
3412
+ export interface GetTdeCertificatesSqlTaskProperties extends ProjectTaskProperties {
3413
3413
  /** Polymorphic discriminator, which specifies the different types this object can be */
3414
3414
  taskType: "GetTDECertificates.Sql";
3415
3415
  /** Task input */
@@ -3419,9 +3419,9 @@ export declare type GetTdeCertificatesSqlTaskProperties = ProjectTaskProperties
3419
3419
  * NOTE: This property will not be serialized. It can only be populated by the server.
3420
3420
  */
3421
3421
  readonly output?: GetTdeCertificatesSqlTaskOutput[];
3422
- };
3422
+ }
3423
3423
  /** Properties for task that migrates SSIS packages from SQL Server databases to Azure SQL Database Managed Instance. */
3424
- export declare type MigrateSsisTaskProperties = ProjectTaskProperties & {
3424
+ export interface MigrateSsisTaskProperties extends ProjectTaskProperties {
3425
3425
  /** Polymorphic discriminator, which specifies the different types this object can be */
3426
3426
  taskType: "Migrate.Ssis";
3427
3427
  /** Task input */
@@ -3431,9 +3431,9 @@ export declare type MigrateSsisTaskProperties = ProjectTaskProperties & {
3431
3431
  * NOTE: This property will not be serialized. It can only be populated by the server.
3432
3432
  */
3433
3433
  readonly output?: MigrateSsisTaskOutputUnion[];
3434
- };
3434
+ }
3435
3435
  /** Properties for the command that completes sync migration for a database. */
3436
- export declare type MigrateSyncCompleteCommandProperties = CommandProperties & {
3436
+ export interface MigrateSyncCompleteCommandProperties extends CommandProperties {
3437
3437
  /** Polymorphic discriminator, which specifies the different types this object can be */
3438
3438
  commandType: "Migrate.Sync.Complete.Database";
3439
3439
  /** Command input */
@@ -3443,9 +3443,9 @@ export declare type MigrateSyncCompleteCommandProperties = CommandProperties & {
3443
3443
  * NOTE: This property will not be serialized. It can only be populated by the server.
3444
3444
  */
3445
3445
  readonly output?: MigrateSyncCompleteCommandOutput;
3446
- };
3446
+ }
3447
3447
  /** Properties for the command that completes online migration for an Azure SQL Database Managed Instance. */
3448
- export declare type MigrateMISyncCompleteCommandProperties = CommandProperties & {
3448
+ export interface MigrateMISyncCompleteCommandProperties extends CommandProperties {
3449
3449
  /** Polymorphic discriminator, which specifies the different types this object can be */
3450
3450
  commandType: "Migrate.SqlServer.AzureDbSqlMi.Complete";
3451
3451
  /** Command input */
@@ -3455,30 +3455,30 @@ export declare type MigrateMISyncCompleteCommandProperties = CommandProperties &
3455
3455
  * NOTE: This property will not be serialized. It can only be populated by the server.
3456
3456
  */
3457
3457
  readonly output?: MigrateMISyncCompleteCommandOutput;
3458
- };
3458
+ }
3459
3459
  /** Properties for the command that cancels a migration in whole or in part */
3460
- export declare type MongoDbCancelCommand = CommandProperties & {
3460
+ export interface MongoDbCancelCommand extends CommandProperties {
3461
3461
  /** Polymorphic discriminator, which specifies the different types this object can be */
3462
3462
  commandType: "cancel";
3463
3463
  /** Command input */
3464
3464
  input?: MongoDbCommandInput;
3465
- };
3465
+ }
3466
3466
  /** Properties for the command that finishes a migration in whole or in part */
3467
- export declare type MongoDbFinishCommand = CommandProperties & {
3467
+ export interface MongoDbFinishCommand extends CommandProperties {
3468
3468
  /** Polymorphic discriminator, which specifies the different types this object can be */
3469
3469
  commandType: "finish";
3470
3470
  /** Command input */
3471
3471
  input?: MongoDbFinishCommandInput;
3472
- };
3472
+ }
3473
3473
  /** Properties for the command that restarts a migration in whole or in part */
3474
- export declare type MongoDbRestartCommand = CommandProperties & {
3474
+ export interface MongoDbRestartCommand extends CommandProperties {
3475
3475
  /** Polymorphic discriminator, which specifies the different types this object can be */
3476
3476
  commandType: "restart";
3477
3477
  /** Command input */
3478
3478
  input?: MongoDbCommandInput;
3479
- };
3479
+ }
3480
3480
  /** A task resource */
3481
- export declare type ProjectTask = Resource & {
3481
+ export interface ProjectTask extends Resource {
3482
3482
  /** HTTP strong entity tag value. This is ignored if submitted. */
3483
3483
  etag?: string;
3484
3484
  /** Custom task properties */
@@ -3488,9 +3488,9 @@ export declare type ProjectTask = Resource & {
3488
3488
  * NOTE: This property will not be serialized. It can only be populated by the server.
3489
3489
  */
3490
3490
  readonly systemData?: SystemData;
3491
- };
3491
+ }
3492
3492
  /** A file resource */
3493
- export declare type ProjectFile = Resource & {
3493
+ export interface ProjectFile extends Resource {
3494
3494
  /** HTTP strong entity tag value. This is ignored if submitted. */
3495
3495
  etag?: string;
3496
3496
  /** Custom file properties */
@@ -3500,9 +3500,9 @@ export declare type ProjectFile = Resource & {
3500
3500
  * NOTE: This property will not be serialized. It can only be populated by the server.
3501
3501
  */
3502
3502
  readonly systemData?: SystemData;
3503
- };
3503
+ }
3504
3504
  /** Describes a connection to a MongoDB data source */
3505
- export declare type MongoDbConnectionInfo = ConnectionInfo & {
3505
+ export interface MongoDbConnectionInfo extends ConnectionInfo {
3506
3506
  /** Polymorphic discriminator, which specifies the different types this object can be */
3507
3507
  type: "MongoDbConnectionInfo";
3508
3508
  /** A MongoDB connection string or blob container URL. The user name and password can be specified here or in the userName and password properties */
@@ -3518,9 +3518,9 @@ export declare type MongoDbConnectionInfo = ConnectionInfo & {
3518
3518
  port?: number;
3519
3519
  /** Additional connection settings */
3520
3520
  additionalSettings?: string;
3521
- };
3521
+ }
3522
3522
  /** Information for connecting to SQL database server */
3523
- export declare type SqlConnectionInfo = ConnectionInfo & {
3523
+ export interface SqlConnectionInfo extends ConnectionInfo {
3524
3524
  /** Polymorphic discriminator, which specifies the different types this object can be */
3525
3525
  type: "SqlConnectionInfo";
3526
3526
  /** Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber */
@@ -3541,9 +3541,9 @@ export declare type SqlConnectionInfo = ConnectionInfo & {
3541
3541
  trustServerCertificate?: boolean;
3542
3542
  /** Server platform type for connection */
3543
3543
  platform?: SqlSourcePlatform;
3544
- };
3544
+ }
3545
3545
  /** Information for connecting to MySQL server */
3546
- export declare type MySqlConnectionInfo = ConnectionInfo & {
3546
+ export interface MySqlConnectionInfo extends ConnectionInfo {
3547
3547
  /** Polymorphic discriminator, which specifies the different types this object can be */
3548
3548
  type: "MySqlConnectionInfo";
3549
3549
  /** Name of the server */
@@ -3554,16 +3554,16 @@ export declare type MySqlConnectionInfo = ConnectionInfo & {
3554
3554
  port: number;
3555
3555
  /** Whether to encrypt the connection */
3556
3556
  encryptConnection?: boolean;
3557
- };
3557
+ }
3558
3558
  /** Information for connecting to Oracle server */
3559
- export declare type OracleConnectionInfo = ConnectionInfo & {
3559
+ export interface OracleConnectionInfo extends ConnectionInfo {
3560
3560
  /** Polymorphic discriminator, which specifies the different types this object can be */
3561
3561
  type: "OracleConnectionInfo";
3562
3562
  /** EZConnect or TNSName connection string. */
3563
3563
  dataSource: string;
3564
- };
3564
+ }
3565
3565
  /** Information for connecting to PostgreSQL server */
3566
- export declare type PostgreSqlConnectionInfo = ConnectionInfo & {
3566
+ export interface PostgreSqlConnectionInfo extends ConnectionInfo {
3567
3567
  /** Polymorphic discriminator, which specifies the different types this object can be */
3568
3568
  type: "PostgreSqlConnectionInfo";
3569
3569
  /** Name of the server */
@@ -3580,16 +3580,16 @@ export declare type PostgreSqlConnectionInfo = ConnectionInfo & {
3580
3580
  encryptConnection?: boolean;
3581
3581
  /** Whether to trust the server certificate */
3582
3582
  trustServerCertificate?: boolean;
3583
- };
3583
+ }
3584
3584
  /** Properties required to create a connection to Azure SQL database Managed instance */
3585
- export declare type MiSqlConnectionInfo = ConnectionInfo & {
3585
+ export interface MiSqlConnectionInfo extends ConnectionInfo {
3586
3586
  /** Polymorphic discriminator, which specifies the different types this object can be */
3587
3587
  type: "MiSqlConnectionInfo";
3588
3588
  /** Resource id for Azure SQL database Managed instance */
3589
3589
  managedInstanceResourceId: string;
3590
- };
3590
+ }
3591
3591
  /** Task level output for the task that validates connection to SQL Server and also validates source server requirements */
3592
- export declare type ConnectToSourceSqlServerTaskOutputTaskLevel = ConnectToSourceSqlServerTaskOutput & {
3592
+ export interface ConnectToSourceSqlServerTaskOutputTaskLevel extends ConnectToSourceSqlServerTaskOutput {
3593
3593
  /** Polymorphic discriminator, which specifies the different types this object can be */
3594
3594
  resultType: "TaskLevelOutput";
3595
3595
  /**
@@ -3627,9 +3627,9 @@ export declare type ConnectToSourceSqlServerTaskOutputTaskLevel = ConnectToSourc
3627
3627
  * NOTE: This property will not be serialized. It can only be populated by the server.
3628
3628
  */
3629
3629
  readonly validationErrors?: ReportableException[];
3630
- };
3630
+ }
3631
3631
  /** Database level output for the task that validates connection to SQL Server and also validates source server requirements */
3632
- export declare type ConnectToSourceSqlServerTaskOutputDatabaseLevel = ConnectToSourceSqlServerTaskOutput & {
3632
+ export interface ConnectToSourceSqlServerTaskOutputDatabaseLevel extends ConnectToSourceSqlServerTaskOutput {
3633
3633
  /** Polymorphic discriminator, which specifies the different types this object can be */
3634
3634
  resultType: "DatabaseLevelOutput";
3635
3635
  /**
@@ -3657,9 +3657,9 @@ export declare type ConnectToSourceSqlServerTaskOutputDatabaseLevel = ConnectToS
3657
3657
  * NOTE: This property will not be serialized. It can only be populated by the server.
3658
3658
  */
3659
3659
  readonly databaseState?: DatabaseState;
3660
- };
3660
+ }
3661
3661
  /** Login level output for the task that validates connection to SQL Server and also validates source server requirements */
3662
- export declare type ConnectToSourceSqlServerTaskOutputLoginLevel = ConnectToSourceSqlServerTaskOutput & {
3662
+ export interface ConnectToSourceSqlServerTaskOutputLoginLevel extends ConnectToSourceSqlServerTaskOutput {
3663
3663
  /** Polymorphic discriminator, which specifies the different types this object can be */
3664
3664
  resultType: "LoginLevelOutput";
3665
3665
  /**
@@ -3687,9 +3687,9 @@ export declare type ConnectToSourceSqlServerTaskOutputLoginLevel = ConnectToSour
3687
3687
  * NOTE: This property will not be serialized. It can only be populated by the server.
3688
3688
  */
3689
3689
  readonly migrationEligibility?: MigrationEligibilityInfo;
3690
- };
3690
+ }
3691
3691
  /** Agent Job level output for the task that validates connection to SQL Server and also validates source server requirements */
3692
- export declare type ConnectToSourceSqlServerTaskOutputAgentJobLevel = ConnectToSourceSqlServerTaskOutput & {
3692
+ export interface ConnectToSourceSqlServerTaskOutputAgentJobLevel extends ConnectToSourceSqlServerTaskOutput {
3693
3693
  /** Polymorphic discriminator, which specifies the different types this object can be */
3694
3694
  resultType: "AgentJobLevelOutput";
3695
3695
  /**
@@ -3727,25 +3727,25 @@ export declare type ConnectToSourceSqlServerTaskOutputAgentJobLevel = ConnectToS
3727
3727
  * NOTE: This property will not be serialized. It can only be populated by the server.
3728
3728
  */
3729
3729
  readonly migrationEligibility?: MigrationEligibilityInfo;
3730
- };
3730
+ }
3731
3731
  /** Input for task that migrates Schema for SQL Server databases to Azure SQL databases */
3732
- export declare type MigrateSchemaSqlServerSqlDbTaskInput = SqlMigrationTaskInput & {
3732
+ export interface MigrateSchemaSqlServerSqlDbTaskInput extends SqlMigrationTaskInput {
3733
3733
  /** Databases to migrate */
3734
3734
  selectedDatabases: MigrateSchemaSqlServerSqlDbDatabaseInput[];
3735
3735
  /** encrypted key for secure fields */
3736
3736
  encryptedKeyForSecureFields?: string;
3737
3737
  /** Migration start time */
3738
3738
  startedOn?: string;
3739
- };
3739
+ }
3740
3740
  /** Input for the task that migrates on-prem SQL Server databases to Azure SQL Database for online migrations */
3741
- export declare type MigrateSqlServerSqlDbSyncTaskInput = SqlMigrationTaskInput & {
3741
+ export interface MigrateSqlServerSqlDbSyncTaskInput extends SqlMigrationTaskInput {
3742
3742
  /** Databases to migrate */
3743
3743
  selectedDatabases: MigrateSqlServerSqlDbSyncDatabaseInput[];
3744
3744
  /** Validation options */
3745
3745
  validationOptions?: MigrationValidationOptions;
3746
- };
3746
+ }
3747
3747
  /** Input for the task that migrates on-prem SQL Server databases to Azure SQL Database */
3748
- export declare type MigrateSqlServerSqlDbTaskInput = SqlMigrationTaskInput & {
3748
+ export interface MigrateSqlServerSqlDbTaskInput extends SqlMigrationTaskInput {
3749
3749
  /** Databases to migrate */
3750
3750
  selectedDatabases: MigrateSqlServerSqlDbDatabaseInput[];
3751
3751
  /**
@@ -3758,9 +3758,9 @@ export declare type MigrateSqlServerSqlDbTaskInput = SqlMigrationTaskInput & {
3758
3758
  startedOn?: string;
3759
3759
  /** encrypted key for secure fields */
3760
3760
  encryptedKeyForSecureFields?: string;
3761
- };
3761
+ }
3762
3762
  /** Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance. */
3763
- export declare type MigrateSqlServerSqlMITaskInput = SqlMigrationTaskInput & {
3763
+ export interface MigrateSqlServerSqlMITaskInput extends SqlMigrationTaskInput {
3764
3764
  /** Databases to migrate */
3765
3765
  selectedDatabases: MigrateSqlServerSqlMIDatabaseInput[];
3766
3766
  /** Date and time relative to UTC when the migration was started on */
@@ -3777,13 +3777,13 @@ export declare type MigrateSqlServerSqlMITaskInput = SqlMigrationTaskInput & {
3777
3777
  backupMode?: BackupMode;
3778
3778
  /** 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 */
3779
3779
  aadDomainName?: string;
3780
- };
3780
+ }
3781
3781
  /** Input for task that migrates SSIS packages from SQL Server to Azure SQL Database Managed Instance. */
3782
- export declare type MigrateSsisTaskInput = SqlMigrationTaskInput & {
3782
+ export interface MigrateSsisTaskInput extends SqlMigrationTaskInput {
3783
3783
  /** SSIS package migration information. */
3784
3784
  ssisMigrationInfo: SsisMigrationInfo;
3785
- };
3786
- export declare type MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel = MigrateSchemaSqlServerSqlDbTaskOutput & {
3785
+ }
3786
+ export interface MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel extends MigrateSchemaSqlServerSqlDbTaskOutput {
3787
3787
  /** Polymorphic discriminator, which specifies the different types this object can be */
3788
3788
  resultType: "MigrationLevelOutput";
3789
3789
  /**
@@ -3821,8 +3821,8 @@ export declare type MigrateSchemaSqlServerSqlDbTaskOutputMigrationLevel = Migrat
3821
3821
  * NOTE: This property will not be serialized. It can only be populated by the server.
3822
3822
  */
3823
3823
  readonly targetServerBrandVersion?: string;
3824
- };
3825
- export declare type MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel = MigrateSchemaSqlServerSqlDbTaskOutput & {
3824
+ }
3825
+ export interface MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel extends MigrateSchemaSqlServerSqlDbTaskOutput {
3826
3826
  /** Polymorphic discriminator, which specifies the different types this object can be */
3827
3827
  resultType: "DatabaseLevelOutput";
3828
3828
  /**
@@ -3875,8 +3875,8 @@ export declare type MigrateSchemaSqlServerSqlDbTaskOutputDatabaseLevel = Migrate
3875
3875
  * NOTE: This property will not be serialized. It can only be populated by the server.
3876
3876
  */
3877
3877
  readonly fileId?: string;
3878
- };
3879
- export declare type MigrateSchemaSqlServerSqlDbTaskOutputError = MigrateSchemaSqlServerSqlDbTaskOutput & {
3878
+ }
3879
+ export interface MigrateSchemaSqlServerSqlDbTaskOutputError extends MigrateSchemaSqlServerSqlDbTaskOutput {
3880
3880
  /** Polymorphic discriminator, which specifies the different types this object can be */
3881
3881
  resultType: "SchemaErrorOutput";
3882
3882
  /**
@@ -3889,8 +3889,8 @@ export declare type MigrateSchemaSqlServerSqlDbTaskOutputError = MigrateSchemaSq
3889
3889
  * NOTE: This property will not be serialized. It can only be populated by the server.
3890
3890
  */
3891
3891
  readonly errorText?: string;
3892
- };
3893
- export declare type MigrateSchemaSqlTaskOutputError = MigrateSchemaSqlServerSqlDbTaskOutput & {
3892
+ }
3893
+ export interface MigrateSchemaSqlTaskOutputError extends MigrateSchemaSqlServerSqlDbTaskOutput {
3894
3894
  /** Polymorphic discriminator, which specifies the different types this object can be */
3895
3895
  resultType: "ErrorOutput";
3896
3896
  /**
@@ -3898,8 +3898,8 @@ export declare type MigrateSchemaSqlTaskOutputError = MigrateSchemaSqlServerSqlD
3898
3898
  * NOTE: This property will not be serialized. It can only be populated by the server.
3899
3899
  */
3900
3900
  readonly error?: ReportableException;
3901
- };
3902
- export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel = MigrateMySqlAzureDbForMySqlSyncTaskOutput & {
3901
+ }
3902
+ export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
3903
3903
  /** Polymorphic discriminator, which specifies the different types this object can be */
3904
3904
  resultType: "MigrationLevelOutput";
3905
3905
  /**
@@ -3932,8 +3932,8 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevel = Mi
3932
3932
  * NOTE: This property will not be serialized. It can only be populated by the server.
3933
3933
  */
3934
3934
  readonly targetServer?: string;
3935
- };
3936
- export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel = MigrateMySqlAzureDbForMySqlSyncTaskOutput & {
3935
+ }
3936
+ export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
3937
3937
  /** Polymorphic discriminator, which specifies the different types this object can be */
3938
3938
  resultType: "DatabaseLevelOutput";
3939
3939
  /**
@@ -4011,8 +4011,8 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevel = Mig
4011
4011
  * NOTE: This property will not be serialized. It can only be populated by the server.
4012
4012
  */
4013
4013
  readonly latency?: number;
4014
- };
4015
- export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel = MigrateMySqlAzureDbForMySqlSyncTaskOutput & {
4014
+ }
4015
+ export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
4016
4016
  /** Polymorphic discriminator, which specifies the different types this object can be */
4017
4017
  resultType: "TableLevelOutput";
4018
4018
  /**
@@ -4080,8 +4080,8 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevel = Migrat
4080
4080
  * NOTE: This property will not be serialized. It can only be populated by the server.
4081
4081
  */
4082
4082
  readonly lastModifiedTime?: Date;
4083
- };
4084
- export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputError = MigrateMySqlAzureDbForMySqlSyncTaskOutput & {
4083
+ }
4084
+ export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputError extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
4085
4085
  /** Polymorphic discriminator, which specifies the different types this object can be */
4086
4086
  resultType: "ErrorOutput";
4087
4087
  /**
@@ -4089,16 +4089,16 @@ export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputError = MigrateMySq
4089
4089
  * NOTE: This property will not be serialized. It can only be populated by the server.
4090
4090
  */
4091
4091
  readonly error?: ReportableException;
4092
- };
4093
- export declare type MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseError = MigrateMySqlAzureDbForMySqlSyncTaskOutput & {
4092
+ }
4093
+ export interface MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseError extends MigrateMySqlAzureDbForMySqlSyncTaskOutput {
4094
4094
  /** Polymorphic discriminator, which specifies the different types this object can be */
4095
4095
  resultType: "DatabaseLevelErrorOutput";
4096
4096
  /** Error message */
4097
4097
  errorMessage?: string;
4098
4098
  /** List of error events. */
4099
4099
  events?: SyncMigrationDatabaseErrorEvent[];
4100
- };
4101
- export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevel = MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput & {
4100
+ }
4101
+ export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
4102
4102
  /** Polymorphic discriminator, which specifies the different types this object can be */
4103
4103
  resultType: "MigrationLevelOutput";
4104
4104
  /**
@@ -4148,8 +4148,8 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigration
4148
4148
  readonly state?: ReplicateMigrationState;
4149
4149
  /** Number of databases to include */
4150
4150
  databaseCount?: number;
4151
- };
4152
- export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevel = MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput & {
4151
+ }
4152
+ export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
4153
4153
  /** Polymorphic discriminator, which specifies the different types this object can be */
4154
4154
  resultType: "DatabaseLevelOutput";
4155
4155
  /**
@@ -4227,8 +4227,8 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseL
4227
4227
  * NOTE: This property will not be serialized. It can only be populated by the server.
4228
4228
  */
4229
4229
  readonly latency?: number;
4230
- };
4231
- export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel = MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput & {
4230
+ }
4231
+ export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevel extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
4232
4232
  /** Polymorphic discriminator, which specifies the different types this object can be */
4233
4233
  resultType: "TableLevelOutput";
4234
4234
  /**
@@ -4296,8 +4296,8 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLeve
4296
4296
  * NOTE: This property will not be serialized. It can only be populated by the server.
4297
4297
  */
4298
4298
  readonly lastModifiedTime?: Date;
4299
- };
4300
- export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError = MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput & {
4299
+ }
4300
+ export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
4301
4301
  /** Polymorphic discriminator, which specifies the different types this object can be */
4302
4302
  resultType: "ErrorOutput";
4303
4303
  /**
@@ -4307,16 +4307,16 @@ export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputError = M
4307
4307
  readonly error?: ReportableException;
4308
4308
  /** List of error events */
4309
4309
  events?: SyncMigrationDatabaseErrorEvent[];
4310
- };
4311
- export declare type MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseError = MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput & {
4310
+ }
4311
+ export interface MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseError extends MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutput {
4312
4312
  /** Polymorphic discriminator, which specifies the different types this object can be */
4313
4313
  resultType: "DatabaseLevelErrorOutput";
4314
4314
  /** Error message */
4315
4315
  errorMessage?: string;
4316
4316
  /** List of error events. */
4317
4317
  events?: SyncMigrationDatabaseErrorEvent[];
4318
- };
4319
- export declare type MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel = MigrateSqlServerSqlDbSyncTaskOutput & {
4318
+ }
4319
+ export interface MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
4320
4320
  /** Polymorphic discriminator, which specifies the different types this object can be */
4321
4321
  resultType: "MigrationLevelOutput";
4322
4322
  /**
@@ -4354,8 +4354,8 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputMigrationLevel = MigrateS
4354
4354
  * NOTE: This property will not be serialized. It can only be populated by the server.
4355
4355
  */
4356
4356
  readonly databaseCount?: number;
4357
- };
4358
- export declare type MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel = MigrateSqlServerSqlDbSyncTaskOutput & {
4357
+ }
4358
+ export interface MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
4359
4359
  /** Polymorphic discriminator, which specifies the different types this object can be */
4360
4360
  resultType: "DatabaseLevelOutput";
4361
4361
  /**
@@ -4433,8 +4433,8 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevel = MigrateSq
4433
4433
  * NOTE: This property will not be serialized. It can only be populated by the server.
4434
4434
  */
4435
4435
  readonly latency?: number;
4436
- };
4437
- export declare type MigrateSqlServerSqlDbSyncTaskOutputTableLevel = MigrateSqlServerSqlDbSyncTaskOutput & {
4436
+ }
4437
+ export interface MigrateSqlServerSqlDbSyncTaskOutputTableLevel extends MigrateSqlServerSqlDbSyncTaskOutput {
4438
4438
  /** Polymorphic discriminator, which specifies the different types this object can be */
4439
4439
  resultType: "TableLevelOutput";
4440
4440
  /**
@@ -4502,8 +4502,8 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputTableLevel = MigrateSqlSe
4502
4502
  * NOTE: This property will not be serialized. It can only be populated by the server.
4503
4503
  */
4504
4504
  readonly lastModifiedTime?: Date;
4505
- };
4506
- export declare type MigrateSqlServerSqlDbSyncTaskOutputError = MigrateSqlServerSqlDbSyncTaskOutput & {
4505
+ }
4506
+ export interface MigrateSqlServerSqlDbSyncTaskOutputError extends MigrateSqlServerSqlDbSyncTaskOutput {
4507
4507
  /** Polymorphic discriminator, which specifies the different types this object can be */
4508
4508
  resultType: "ErrorOutput";
4509
4509
  /**
@@ -4511,16 +4511,16 @@ export declare type MigrateSqlServerSqlDbSyncTaskOutputError = MigrateSqlServerS
4511
4511
  * NOTE: This property will not be serialized. It can only be populated by the server.
4512
4512
  */
4513
4513
  readonly error?: ReportableException;
4514
- };
4515
- export declare type MigrateSqlServerSqlDbSyncTaskOutputDatabaseError = MigrateSqlServerSqlDbSyncTaskOutput & {
4514
+ }
4515
+ export interface MigrateSqlServerSqlDbSyncTaskOutputDatabaseError extends MigrateSqlServerSqlDbSyncTaskOutput {
4516
4516
  /** Polymorphic discriminator, which specifies the different types this object can be */
4517
4517
  resultType: "DatabaseLevelErrorOutput";
4518
4518
  /** Error message */
4519
4519
  errorMessage?: string;
4520
4520
  /** List of error events. */
4521
4521
  events?: SyncMigrationDatabaseErrorEvent[];
4522
- };
4523
- export declare type MigrateSqlServerSqlDbTaskOutputMigrationLevel = MigrateSqlServerSqlDbTaskOutput & {
4522
+ }
4523
+ export interface MigrateSqlServerSqlDbTaskOutputMigrationLevel extends MigrateSqlServerSqlDbTaskOutput {
4524
4524
  /** Polymorphic discriminator, which specifies the different types this object can be */
4525
4525
  resultType: "MigrationLevelOutput";
4526
4526
  /**
@@ -4592,8 +4592,8 @@ export declare type MigrateSqlServerSqlDbTaskOutputMigrationLevel = MigrateSqlSe
4592
4592
  * NOTE: This property will not be serialized. It can only be populated by the server.
4593
4593
  */
4594
4594
  readonly exceptionsAndWarnings?: ReportableException[];
4595
- };
4596
- export declare type MigrateSqlServerSqlDbTaskOutputDatabaseLevel = MigrateSqlServerSqlDbTaskOutput & {
4595
+ }
4596
+ export interface MigrateSqlServerSqlDbTaskOutputDatabaseLevel extends MigrateSqlServerSqlDbTaskOutput {
4597
4597
  /** Polymorphic discriminator, which specifies the different types this object can be */
4598
4598
  resultType: "DatabaseLevelOutput";
4599
4599
  /**
@@ -4666,8 +4666,8 @@ export declare type MigrateSqlServerSqlDbTaskOutputDatabaseLevel = MigrateSqlSer
4666
4666
  * NOTE: This property will not be serialized. It can only be populated by the server.
4667
4667
  */
4668
4668
  readonly objectSummary?: string;
4669
- };
4670
- export declare type MigrateSqlServerSqlDbTaskOutputTableLevel = MigrateSqlServerSqlDbTaskOutput & {
4669
+ }
4670
+ export interface MigrateSqlServerSqlDbTaskOutputTableLevel extends MigrateSqlServerSqlDbTaskOutput {
4671
4671
  /** Polymorphic discriminator, which specifies the different types this object can be */
4672
4672
  resultType: "TableLevelOutput";
4673
4673
  /**
@@ -4715,8 +4715,8 @@ export declare type MigrateSqlServerSqlDbTaskOutputTableLevel = MigrateSqlServer
4715
4715
  * NOTE: This property will not be serialized. It can only be populated by the server.
4716
4716
  */
4717
4717
  readonly resultPrefix?: string;
4718
- };
4719
- export declare type MigrateSqlServerSqlDbTaskOutputError = MigrateSqlServerSqlDbTaskOutput & {
4718
+ }
4719
+ export interface MigrateSqlServerSqlDbTaskOutputError extends MigrateSqlServerSqlDbTaskOutput {
4720
4720
  /** Polymorphic discriminator, which specifies the different types this object can be */
4721
4721
  resultType: "ErrorOutput";
4722
4722
  /**
@@ -4724,28 +4724,30 @@ export declare type MigrateSqlServerSqlDbTaskOutputError = MigrateSqlServerSqlDb
4724
4724
  * NOTE: This property will not be serialized. It can only be populated by the server.
4725
4725
  */
4726
4726
  readonly error?: ReportableException;
4727
- };
4728
- export declare type MigrateSqlServerSqlDbTaskOutputValidationResult = MigrateSqlServerSqlDbTaskOutput & MigrationValidationResult & {
4727
+ }
4728
+ export interface MigrateSqlServerSqlDbTaskOutputValidationResult extends MigrateSqlServerSqlDbTaskOutput, MigrationValidationResult {
4729
4729
  /** Polymorphic discriminator, which specifies the different types this object can be */
4730
4730
  resultType: "MigrationValidationOutput";
4731
- };
4732
- export declare type MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResult = MigrateSqlServerSqlDbTaskOutput & MigrationValidationDatabaseLevelResult & {
4731
+ }
4732
+ export interface MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResult extends MigrateSqlServerSqlDbTaskOutput, MigrationValidationDatabaseLevelResult {
4733
4733
  /** Polymorphic discriminator, which specifies the different types this object can be */
4734
4734
  resultType: "MigrationDatabaseLevelValidationOutput";
4735
- };
4735
+ }
4736
4736
  /** Summary of database results in the migration */
4737
- export declare type DatabaseSummaryResult = DataItemMigrationSummaryResult & {
4737
+ export interface DatabaseSummaryResult extends DataItemMigrationSummaryResult {
4738
4738
  /**
4739
4739
  * Size of the database in megabytes
4740
4740
  * NOTE: This property will not be serialized. It can only be populated by the server.
4741
4741
  */
4742
4742
  readonly sizeMB?: number;
4743
- };
4743
+ }
4744
4744
  /** Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance online scenario. */
4745
- export declare type MigrateSqlServerSqlMISyncTaskInput = SqlServerSqlMISyncTaskInput & {};
4745
+ export interface MigrateSqlServerSqlMISyncTaskInput extends SqlServerSqlMISyncTaskInput {
4746
+ }
4746
4747
  /** Input for task that migrates SQL Server databases to Azure SQL Database Managed Instance online scenario. */
4747
- export declare type ValidateMigrationInputSqlServerSqlMISyncTaskInput = SqlServerSqlMISyncTaskInput & {};
4748
- export declare type MigrateSqlServerSqlMISyncTaskOutputMigrationLevel = MigrateSqlServerSqlMISyncTaskOutput & {
4748
+ export interface ValidateMigrationInputSqlServerSqlMISyncTaskInput extends SqlServerSqlMISyncTaskInput {
4749
+ }
4750
+ export interface MigrateSqlServerSqlMISyncTaskOutputMigrationLevel extends MigrateSqlServerSqlMISyncTaskOutput {
4749
4751
  /** Polymorphic discriminator, which specifies the different types this object can be */
4750
4752
  resultType: "MigrationLevelOutput";
4751
4753
  /**
@@ -4803,8 +4805,8 @@ export declare type MigrateSqlServerSqlMISyncTaskOutputMigrationLevel = MigrateS
4803
4805
  * NOTE: This property will not be serialized. It can only be populated by the server.
4804
4806
  */
4805
4807
  readonly databaseErrorCount?: number;
4806
- };
4807
- export declare type MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel = MigrateSqlServerSqlMISyncTaskOutput & {
4808
+ }
4809
+ export interface MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel extends MigrateSqlServerSqlMISyncTaskOutput {
4808
4810
  /** Polymorphic discriminator, which specifies the different types this object can be */
4809
4811
  resultType: "DatabaseLevelOutput";
4810
4812
  /**
@@ -4862,8 +4864,8 @@ export declare type MigrateSqlServerSqlMISyncTaskOutputDatabaseLevel = MigrateSq
4862
4864
  * NOTE: This property will not be serialized. It can only be populated by the server.
4863
4865
  */
4864
4866
  readonly exceptionsAndWarnings?: ReportableException[];
4865
- };
4866
- export declare type MigrateSqlServerSqlMISyncTaskOutputError = MigrateSqlServerSqlMISyncTaskOutput & {
4867
+ }
4868
+ export interface MigrateSqlServerSqlMISyncTaskOutputError extends MigrateSqlServerSqlMISyncTaskOutput {
4867
4869
  /** Polymorphic discriminator, which specifies the different types this object can be */
4868
4870
  resultType: "ErrorOutput";
4869
4871
  /**
@@ -4871,8 +4873,8 @@ export declare type MigrateSqlServerSqlMISyncTaskOutputError = MigrateSqlServerS
4871
4873
  * NOTE: This property will not be serialized. It can only be populated by the server.
4872
4874
  */
4873
4875
  readonly error?: ReportableException;
4874
- };
4875
- export declare type MigrateSqlServerSqlMITaskOutputMigrationLevel = MigrateSqlServerSqlMITaskOutput & {
4876
+ }
4877
+ export interface MigrateSqlServerSqlMITaskOutputMigrationLevel extends MigrateSqlServerSqlMITaskOutput {
4876
4878
  /** Polymorphic discriminator, which specifies the different types this object can be */
4877
4879
  resultType: "MigrationLevelOutput";
4878
4880
  /**
@@ -4950,8 +4952,8 @@ export declare type MigrateSqlServerSqlMITaskOutputMigrationLevel = MigrateSqlSe
4950
4952
  * NOTE: This property will not be serialized. It can only be populated by the server.
4951
4953
  */
4952
4954
  readonly exceptionsAndWarnings?: ReportableException[];
4953
- };
4954
- export declare type MigrateSqlServerSqlMITaskOutputDatabaseLevel = MigrateSqlServerSqlMITaskOutput & {
4955
+ }
4956
+ export interface MigrateSqlServerSqlMITaskOutputDatabaseLevel extends MigrateSqlServerSqlMITaskOutput {
4955
4957
  /** Polymorphic discriminator, which specifies the different types this object can be */
4956
4958
  resultType: "DatabaseLevelOutput";
4957
4959
  /**
@@ -4994,8 +4996,8 @@ export declare type MigrateSqlServerSqlMITaskOutputDatabaseLevel = MigrateSqlSer
4994
4996
  * NOTE: This property will not be serialized. It can only be populated by the server.
4995
4997
  */
4996
4998
  readonly exceptionsAndWarnings?: ReportableException[];
4997
- };
4998
- export declare type MigrateSqlServerSqlMITaskOutputAgentJobLevel = MigrateSqlServerSqlMITaskOutput & {
4999
+ }
5000
+ export interface MigrateSqlServerSqlMITaskOutputAgentJobLevel extends MigrateSqlServerSqlMITaskOutput {
4999
5001
  /** Polymorphic discriminator, which specifies the different types this object can be */
5000
5002
  resultType: "AgentJobLevelOutput";
5001
5003
  /**
@@ -5033,8 +5035,8 @@ export declare type MigrateSqlServerSqlMITaskOutputAgentJobLevel = MigrateSqlSer
5033
5035
  * NOTE: This property will not be serialized. It can only be populated by the server.
5034
5036
  */
5035
5037
  readonly exceptionsAndWarnings?: ReportableException[];
5036
- };
5037
- export declare type MigrateSqlServerSqlMITaskOutputLoginLevel = MigrateSqlServerSqlMITaskOutput & {
5038
+ }
5039
+ export interface MigrateSqlServerSqlMITaskOutputLoginLevel extends MigrateSqlServerSqlMITaskOutput {
5038
5040
  /** Polymorphic discriminator, which specifies the different types this object can be */
5039
5041
  resultType: "LoginLevelOutput";
5040
5042
  /**
@@ -5072,8 +5074,8 @@ export declare type MigrateSqlServerSqlMITaskOutputLoginLevel = MigrateSqlServer
5072
5074
  * NOTE: This property will not be serialized. It can only be populated by the server.
5073
5075
  */
5074
5076
  readonly exceptionsAndWarnings?: ReportableException[];
5075
- };
5076
- export declare type MigrateSqlServerSqlMITaskOutputError = MigrateSqlServerSqlMITaskOutput & {
5077
+ }
5078
+ export interface MigrateSqlServerSqlMITaskOutputError extends MigrateSqlServerSqlMITaskOutput {
5077
5079
  /** Polymorphic discriminator, which specifies the different types this object can be */
5078
5080
  resultType: "ErrorOutput";
5079
5081
  /**
@@ -5081,8 +5083,8 @@ export declare type MigrateSqlServerSqlMITaskOutputError = MigrateSqlServerSqlMI
5081
5083
  * NOTE: This property will not be serialized. It can only be populated by the server.
5082
5084
  */
5083
5085
  readonly error?: ReportableException;
5084
- };
5085
- export declare type MigrateSsisTaskOutputMigrationLevel = MigrateSsisTaskOutput & {
5086
+ }
5087
+ export interface MigrateSsisTaskOutputMigrationLevel extends MigrateSsisTaskOutput {
5086
5088
  /** Polymorphic discriminator, which specifies the different types this object can be */
5087
5089
  resultType: "MigrationLevelOutput";
5088
5090
  /**
@@ -5135,8 +5137,8 @@ export declare type MigrateSsisTaskOutputMigrationLevel = MigrateSsisTaskOutput
5135
5137
  * NOTE: This property will not be serialized. It can only be populated by the server.
5136
5138
  */
5137
5139
  readonly stage?: SsisMigrationStage;
5138
- };
5139
- export declare type MigrateSsisTaskOutputProjectLevel = MigrateSsisTaskOutput & {
5140
+ }
5141
+ export interface MigrateSsisTaskOutputProjectLevel extends MigrateSsisTaskOutput {
5140
5142
  /** Polymorphic discriminator, which specifies the different types this object can be */
5141
5143
  resultType: "SsisProjectLevelOutput";
5142
5144
  /**
@@ -5179,14 +5181,14 @@ export declare type MigrateSsisTaskOutputProjectLevel = MigrateSsisTaskOutput &
5179
5181
  * NOTE: This property will not be serialized. It can only be populated by the server.
5180
5182
  */
5181
5183
  readonly exceptionsAndWarnings?: ReportableException[];
5182
- };
5184
+ }
5183
5185
  /** Describes the input to the 'finish' MongoDB migration command */
5184
- export declare type MongoDbFinishCommandInput = MongoDbCommandInput & {
5186
+ export interface MongoDbFinishCommandInput extends MongoDbCommandInput {
5185
5187
  /** If true, replication for the affected objects will be stopped immediately. If false, the migrator will finish replaying queued events before finishing the replication. */
5186
5188
  immediate: boolean;
5187
- };
5189
+ }
5188
5190
  /** Describes a supported collection within a MongoDB database */
5189
- export declare type MongoDbCollectionInfo = MongoDbObjectInfo & {
5191
+ export interface MongoDbCollectionInfo extends MongoDbObjectInfo {
5190
5192
  /** The name of the database containing the collection */
5191
5193
  databaseName: string;
5192
5194
  /** Whether the collection is a capped collection (i.e. whether it has a fixed size and acts like a circular buffer) */
@@ -5201,38 +5203,38 @@ export declare type MongoDbCollectionInfo = MongoDbObjectInfo & {
5201
5203
  supportsSharding: boolean;
5202
5204
  /** The name of the collection that this is a view of, if IsView is true */
5203
5205
  viewOf?: string;
5204
- };
5206
+ }
5205
5207
  /** Describes a database within a MongoDB data source */
5206
- export declare type MongoDbDatabaseInfo = MongoDbObjectInfo & {
5208
+ export interface MongoDbDatabaseInfo extends MongoDbObjectInfo {
5207
5209
  /** A list of supported collections in a MongoDB database */
5208
5210
  collections: MongoDbCollectionInfo[];
5209
5211
  /** Whether the database has sharding enabled. Note that the migration task will enable sharding on the target if necessary. */
5210
5212
  supportsSharding: boolean;
5211
- };
5213
+ }
5212
5214
  /** Describes the progress of a collection */
5213
- export declare type MongoDbCollectionProgress = MongoDbProgress & {
5215
+ export interface MongoDbCollectionProgress extends MongoDbProgress {
5214
5216
  /** Polymorphic discriminator, which specifies the different types this object can be */
5215
5217
  resultType: "Collection";
5216
- };
5218
+ }
5217
5219
  /** Describes the progress of a database */
5218
- export declare type MongoDbDatabaseProgress = MongoDbProgress & {
5220
+ export interface MongoDbDatabaseProgress extends MongoDbProgress {
5219
5221
  /** Polymorphic discriminator, which specifies the different types this object can be */
5220
5222
  resultType: "Database";
5221
5223
  /** The progress of the collections in the database. The keys are the unqualified names of the collections */
5222
5224
  collections?: {
5223
5225
  [propertyName: string]: MongoDbCollectionProgress;
5224
5226
  };
5225
- };
5227
+ }
5226
5228
  /** Describes the progress of the overall migration */
5227
- export declare type MongoDbMigrationProgress = MongoDbProgress & {
5229
+ export interface MongoDbMigrationProgress extends MongoDbProgress {
5228
5230
  /** Polymorphic discriminator, which specifies the different types this object can be */
5229
5231
  resultType: "Migration";
5230
5232
  /** The progress of the databases in the migration. The keys are the names of the databases */
5231
5233
  databases?: {
5232
5234
  [propertyName: string]: MongoDbDatabaseProgress;
5233
5235
  };
5234
- };
5235
- export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel = MigrateOracleAzureDbPostgreSqlSyncTaskOutput & {
5236
+ }
5237
+ export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
5236
5238
  /** Polymorphic discriminator, which specifies the different types this object can be */
5237
5239
  resultType: "MigrationLevelOutput";
5238
5240
  /**
@@ -5265,8 +5267,8 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputMigrationLevel =
5265
5267
  * NOTE: This property will not be serialized. It can only be populated by the server.
5266
5268
  */
5267
5269
  readonly targetServer?: string;
5268
- };
5269
- export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel = MigrateOracleAzureDbPostgreSqlSyncTaskOutput & {
5270
+ }
5271
+ export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
5270
5272
  /** Polymorphic discriminator, which specifies the different types this object can be */
5271
5273
  resultType: "DatabaseLevelOutput";
5272
5274
  /**
@@ -5344,8 +5346,8 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseLevel =
5344
5346
  * NOTE: This property will not be serialized. It can only be populated by the server.
5345
5347
  */
5346
5348
  readonly latency?: number;
5347
- };
5348
- export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel = MigrateOracleAzureDbPostgreSqlSyncTaskOutput & {
5349
+ }
5350
+ export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
5349
5351
  /** Polymorphic discriminator, which specifies the different types this object can be */
5350
5352
  resultType: "TableLevelOutput";
5351
5353
  /**
@@ -5413,8 +5415,8 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputTableLevel = Mig
5413
5415
  * NOTE: This property will not be serialized. It can only be populated by the server.
5414
5416
  */
5415
5417
  readonly lastModifiedTime?: Date;
5416
- };
5417
- export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputError = MigrateOracleAzureDbPostgreSqlSyncTaskOutput & {
5418
+ }
5419
+ export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputError extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
5418
5420
  /** Polymorphic discriminator, which specifies the different types this object can be */
5419
5421
  resultType: "ErrorOutput";
5420
5422
  /**
@@ -5422,16 +5424,16 @@ export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputError = MigrateO
5422
5424
  * NOTE: This property will not be serialized. It can only be populated by the server.
5423
5425
  */
5424
5426
  readonly error?: ReportableException;
5425
- };
5426
- export declare type MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseError = MigrateOracleAzureDbPostgreSqlSyncTaskOutput & {
5427
+ }
5428
+ export interface MigrateOracleAzureDbPostgreSqlSyncTaskOutputDatabaseError extends MigrateOracleAzureDbPostgreSqlSyncTaskOutput {
5427
5429
  /** Polymorphic discriminator, which specifies the different types this object can be */
5428
5430
  resultType: "DatabaseLevelErrorOutput";
5429
5431
  /** Error message */
5430
5432
  errorMessage?: string;
5431
5433
  /** List of error events. */
5432
5434
  events?: SyncMigrationDatabaseErrorEvent[];
5433
- };
5434
- export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel = MigrateMySqlAzureDbForMySqlOfflineTaskOutput & {
5435
+ }
5436
+ export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
5435
5437
  /** Polymorphic discriminator, which specifies the different types this object can be */
5436
5438
  resultType: "MigrationLevelOutput";
5437
5439
  /**
@@ -5503,8 +5505,8 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputMigrationLevel =
5503
5505
  * NOTE: This property will not be serialized. It can only be populated by the server.
5504
5506
  */
5505
5507
  readonly lastStorageUpdate?: Date;
5506
- };
5507
- export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel = MigrateMySqlAzureDbForMySqlOfflineTaskOutput & {
5508
+ }
5509
+ export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
5508
5510
  /** Polymorphic discriminator, which specifies the different types this object can be */
5509
5511
  resultType: "DatabaseLevelOutput";
5510
5512
  /**
@@ -5582,8 +5584,8 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputDatabaseLevel =
5582
5584
  * NOTE: This property will not be serialized. It can only be populated by the server.
5583
5585
  */
5584
5586
  readonly objectSummary?: string;
5585
- };
5586
- export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel = MigrateMySqlAzureDbForMySqlOfflineTaskOutput & {
5587
+ }
5588
+ export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
5587
5589
  /** Polymorphic discriminator, which specifies the different types this object can be */
5588
5590
  resultType: "TableLevelOutput";
5589
5591
  /**
@@ -5636,8 +5638,8 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputTableLevel = Mig
5636
5638
  * NOTE: This property will not be serialized. It can only be populated by the server.
5637
5639
  */
5638
5640
  readonly lastStorageUpdate?: Date;
5639
- };
5640
- export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputError = MigrateMySqlAzureDbForMySqlOfflineTaskOutput & {
5641
+ }
5642
+ export interface MigrateMySqlAzureDbForMySqlOfflineTaskOutputError extends MigrateMySqlAzureDbForMySqlOfflineTaskOutput {
5641
5643
  /** Polymorphic discriminator, which specifies the different types this object can be */
5642
5644
  resultType: "ErrorOutput";
5643
5645
  /**
@@ -5645,12 +5647,16 @@ export declare type MigrateMySqlAzureDbForMySqlOfflineTaskOutputError = MigrateM
5645
5647
  * NOTE: This property will not be serialized. It can only be populated by the server.
5646
5648
  */
5647
5649
  readonly error?: ReportableException;
5648
- };
5650
+ }
5649
5651
  /** Known values of {@link CreatedByType} that the service accepts. */
5650
5652
  export declare enum KnownCreatedByType {
5653
+ /** User */
5651
5654
  User = "User",
5655
+ /** Application */
5652
5656
  Application = "Application",
5657
+ /** ManagedIdentity */
5653
5658
  ManagedIdentity = "ManagedIdentity",
5659
+ /** Key */
5654
5660
  Key = "Key"
5655
5661
  }
5656
5662
  /**
@@ -5666,7 +5672,9 @@ export declare enum KnownCreatedByType {
5666
5672
  export declare type CreatedByType = string;
5667
5673
  /** Known values of {@link ResourceType} that the service accepts. */
5668
5674
  export declare enum KnownResourceType {
5675
+ /** SqlMi */
5669
5676
  SqlMi = "SqlMi",
5677
+ /** SqlVm */
5670
5678
  SqlVm = "SqlVm"
5671
5679
  }
5672
5680
  /**
@@ -5680,7 +5688,9 @@ export declare enum KnownResourceType {
5680
5688
  export declare type ResourceType = string;
5681
5689
  /** Known values of {@link OperationOrigin} that the service accepts. */
5682
5690
  export declare enum KnownOperationOrigin {
5691
+ /** User */
5683
5692
  User = "user",
5693
+ /** System */
5684
5694
  System = "system"
5685
5695
  }
5686
5696
  /**
@@ -5694,8 +5704,11 @@ export declare enum KnownOperationOrigin {
5694
5704
  export declare type OperationOrigin = string;
5695
5705
  /** Known values of {@link ResourceSkuCapacityScaleType} that the service accepts. */
5696
5706
  export declare enum KnownResourceSkuCapacityScaleType {
5707
+ /** Automatic */
5697
5708
  Automatic = "Automatic",
5709
+ /** Manual */
5698
5710
  Manual = "Manual",
5711
+ /** None */
5699
5712
  None = "None"
5700
5713
  }
5701
5714
  /**
@@ -5710,6 +5723,7 @@ export declare enum KnownResourceSkuCapacityScaleType {
5710
5723
  export declare type ResourceSkuCapacityScaleType = string;
5711
5724
  /** Known values of {@link ResourceSkuRestrictionsType} that the service accepts. */
5712
5725
  export declare enum KnownResourceSkuRestrictionsType {
5726
+ /** Location */
5713
5727
  Location = "location"
5714
5728
  }
5715
5729
  /**
@@ -5722,7 +5736,9 @@ export declare enum KnownResourceSkuRestrictionsType {
5722
5736
  export declare type ResourceSkuRestrictionsType = string;
5723
5737
  /** Known values of {@link ResourceSkuRestrictionsReasonCode} that the service accepts. */
5724
5738
  export declare enum KnownResourceSkuRestrictionsReasonCode {
5739
+ /** QuotaId */
5725
5740
  QuotaId = "QuotaId",
5741
+ /** NotAvailableForSubscription */
5726
5742
  NotAvailableForSubscription = "NotAvailableForSubscription"
5727
5743
  }
5728
5744
  /**
@@ -5736,15 +5752,25 @@ export declare enum KnownResourceSkuRestrictionsReasonCode {
5736
5752
  export declare type ResourceSkuRestrictionsReasonCode = string;
5737
5753
  /** Known values of {@link ServiceProvisioningState} that the service accepts. */
5738
5754
  export declare enum KnownServiceProvisioningState {
5755
+ /** Accepted */
5739
5756
  Accepted = "Accepted",
5757
+ /** Deleting */
5740
5758
  Deleting = "Deleting",
5759
+ /** Deploying */
5741
5760
  Deploying = "Deploying",
5761
+ /** Stopped */
5742
5762
  Stopped = "Stopped",
5763
+ /** Stopping */
5743
5764
  Stopping = "Stopping",
5765
+ /** Starting */
5744
5766
  Starting = "Starting",
5767
+ /** FailedToStart */
5745
5768
  FailedToStart = "FailedToStart",
5769
+ /** FailedToStop */
5746
5770
  FailedToStop = "FailedToStop",
5771
+ /** Succeeded */
5747
5772
  Succeeded = "Succeeded",
5773
+ /** Failed */
5748
5774
  Failed = "Failed"
5749
5775
  }
5750
5776
  /**
@@ -5766,8 +5792,11 @@ export declare enum KnownServiceProvisioningState {
5766
5792
  export declare type ServiceProvisioningState = string;
5767
5793
  /** Known values of {@link ServiceScalability} that the service accepts. */
5768
5794
  export declare enum KnownServiceScalability {
5795
+ /** None */
5769
5796
  None = "none",
5797
+ /** Manual */
5770
5798
  Manual = "manual",
5799
+ /** Automatic */
5771
5800
  Automatic = "automatic"
5772
5801
  }
5773
5802
  /**
@@ -5782,43 +5811,81 @@ export declare enum KnownServiceScalability {
5782
5811
  export declare type ServiceScalability = string;
5783
5812
  /** Known values of {@link TaskType} that the service accepts. */
5784
5813
  export declare enum KnownTaskType {
5814
+ /** ConnectMongoDb */
5785
5815
  ConnectMongoDb = "Connect.MongoDb",
5816
+ /** ConnectToSourceSqlServer */
5786
5817
  ConnectToSourceSqlServer = "ConnectToSource.SqlServer",
5818
+ /** ConnectToSourceSqlServerSync */
5787
5819
  ConnectToSourceSqlServerSync = "ConnectToSource.SqlServer.Sync",
5820
+ /** ConnectToSourcePostgreSqlSync */
5788
5821
  ConnectToSourcePostgreSqlSync = "ConnectToSource.PostgreSql.Sync",
5822
+ /** ConnectToSourceMySql */
5789
5823
  ConnectToSourceMySql = "ConnectToSource.MySql",
5824
+ /** ConnectToSourceOracleSync */
5790
5825
  ConnectToSourceOracleSync = "ConnectToSource.Oracle.Sync",
5826
+ /** ConnectToTargetSqlDb */
5791
5827
  ConnectToTargetSqlDb = "ConnectToTarget.SqlDb",
5828
+ /** ConnectToTargetSqlDbSync */
5792
5829
  ConnectToTargetSqlDbSync = "ConnectToTarget.SqlDb.Sync",
5830
+ /** ConnectToTargetAzureDbForPostgreSqlSync */
5793
5831
  ConnectToTargetAzureDbForPostgreSqlSync = "ConnectToTarget.AzureDbForPostgreSql.Sync",
5832
+ /** ConnectToTargetOracleAzureDbForPostgreSqlSync */
5794
5833
  ConnectToTargetOracleAzureDbForPostgreSqlSync = "ConnectToTarget.Oracle.AzureDbForPostgreSql.Sync",
5834
+ /** ConnectToTargetAzureSqlDbMI */
5795
5835
  ConnectToTargetAzureSqlDbMI = "ConnectToTarget.AzureSqlDbMI",
5836
+ /** ConnectToTargetAzureSqlDbMISyncLRS */
5796
5837
  ConnectToTargetAzureSqlDbMISyncLRS = "ConnectToTarget.AzureSqlDbMI.Sync.LRS",
5838
+ /** ConnectToTargetAzureDbForMySql */
5797
5839
  ConnectToTargetAzureDbForMySql = "ConnectToTarget.AzureDbForMySql",
5840
+ /** GetUserTablesSql */
5798
5841
  GetUserTablesSql = "GetUserTables.Sql",
5842
+ /** GetUserTablesAzureSqlDbSync */
5799
5843
  GetUserTablesAzureSqlDbSync = "GetUserTables.AzureSqlDb.Sync",
5844
+ /** GetUserTablesOracle */
5800
5845
  GetUserTablesOracle = "GetUserTablesOracle",
5846
+ /** GetUserTablesPostgreSql */
5801
5847
  GetUserTablesPostgreSql = "GetUserTablesPostgreSql",
5848
+ /** GetUserTablesMySql */
5802
5849
  GetUserTablesMySql = "GetUserTablesMySql",
5850
+ /** MigrateMongoDb */
5803
5851
  MigrateMongoDb = "Migrate.MongoDb",
5852
+ /** MigrateSqlServerAzureSqlDbMI */
5804
5853
  MigrateSqlServerAzureSqlDbMI = "Migrate.SqlServer.AzureSqlDbMI",
5854
+ /** MigrateSqlServerAzureSqlDbMISyncLRS */
5805
5855
  MigrateSqlServerAzureSqlDbMISyncLRS = "Migrate.SqlServer.AzureSqlDbMI.Sync.LRS",
5856
+ /** MigrateSqlServerSqlDb */
5806
5857
  MigrateSqlServerSqlDb = "Migrate.SqlServer.SqlDb",
5858
+ /** MigrateSqlServerAzureSqlDbSync */
5807
5859
  MigrateSqlServerAzureSqlDbSync = "Migrate.SqlServer.AzureSqlDb.Sync",
5860
+ /** MigrateMySqlAzureDbForMySqlSync */
5808
5861
  MigrateMySqlAzureDbForMySqlSync = "Migrate.MySql.AzureDbForMySql.Sync",
5862
+ /** MigrateMySqlAzureDbForMySql */
5809
5863
  MigrateMySqlAzureDbForMySql = "Migrate.MySql.AzureDbForMySql",
5864
+ /** MigratePostgreSqlAzureDbForPostgreSqlSyncV2 */
5810
5865
  MigratePostgreSqlAzureDbForPostgreSqlSyncV2 = "Migrate.PostgreSql.AzureDbForPostgreSql.SyncV2",
5866
+ /** MigrateOracleAzureDbForPostgreSqlSync */
5811
5867
  MigrateOracleAzureDbForPostgreSqlSync = "Migrate.Oracle.AzureDbForPostgreSql.Sync",
5868
+ /** ValidateMigrationInputSqlServerSqlDbSync */
5812
5869
  ValidateMigrationInputSqlServerSqlDbSync = "ValidateMigrationInput.SqlServer.SqlDb.Sync",
5870
+ /** ValidateMigrationInputSqlServerAzureSqlDbMI */
5813
5871
  ValidateMigrationInputSqlServerAzureSqlDbMI = "ValidateMigrationInput.SqlServer.AzureSqlDbMI",
5872
+ /** ValidateMigrationInputSqlServerAzureSqlDbMISyncLRS */
5814
5873
  ValidateMigrationInputSqlServerAzureSqlDbMISyncLRS = "ValidateMigrationInput.SqlServer.AzureSqlDbMI.Sync.LRS",
5874
+ /** ValidateMongoDb */
5815
5875
  ValidateMongoDb = "Validate.MongoDb",
5876
+ /** ValidateOracleAzureDbPostgreSqlSync */
5816
5877
  ValidateOracleAzureDbPostgreSqlSync = "Validate.Oracle.AzureDbPostgreSql.Sync",
5878
+ /** GetTDECertificatesSql */
5817
5879
  GetTDECertificatesSql = "GetTDECertificates.Sql",
5880
+ /** MigrateSsis */
5818
5881
  MigrateSsis = "Migrate.Ssis",
5882
+ /** ServiceCheckOCI */
5819
5883
  ServiceCheckOCI = "Service.Check.OCI",
5884
+ /** ServiceUploadOCI */
5820
5885
  ServiceUploadOCI = "Service.Upload.OCI",
5886
+ /** ServiceInstallOCI */
5821
5887
  ServiceInstallOCI = "Service.Install.OCI",
5888
+ /** MigrateSchemaSqlServerSqlDb */
5822
5889
  MigrateSchemaSqlServerSqlDb = "MigrateSchemaSqlServerSqlDb"
5823
5890
  }
5824
5891
  /**
@@ -5868,13 +5935,21 @@ export declare enum KnownTaskType {
5868
5935
  export declare type TaskType = string;
5869
5936
  /** Known values of {@link TaskState} that the service accepts. */
5870
5937
  export declare enum KnownTaskState {
5938
+ /** Unknown */
5871
5939
  Unknown = "Unknown",
5940
+ /** Queued */
5872
5941
  Queued = "Queued",
5942
+ /** Running */
5873
5943
  Running = "Running",
5944
+ /** Canceled */
5874
5945
  Canceled = "Canceled",
5946
+ /** Succeeded */
5875
5947
  Succeeded = "Succeeded",
5948
+ /** Failed */
5876
5949
  Failed = "Failed",
5950
+ /** FailedInputValidation */
5877
5951
  FailedInputValidation = "FailedInputValidation",
5952
+ /** Faulted */
5878
5953
  Faulted = "Faulted"
5879
5954
  }
5880
5955
  /**
@@ -5894,10 +5969,15 @@ export declare enum KnownTaskState {
5894
5969
  export declare type TaskState = string;
5895
5970
  /** Known values of {@link CommandType} that the service accepts. */
5896
5971
  export declare enum KnownCommandType {
5972
+ /** MigrateSyncCompleteDatabase */
5897
5973
  MigrateSyncCompleteDatabase = "Migrate.Sync.Complete.Database",
5974
+ /** MigrateSqlServerAzureDbSqlMiComplete */
5898
5975
  MigrateSqlServerAzureDbSqlMiComplete = "Migrate.SqlServer.AzureDbSqlMi.Complete",
5976
+ /** Cancel */
5899
5977
  Cancel = "cancel",
5978
+ /** Finish */
5900
5979
  Finish = "finish",
5980
+ /** Restart */
5901
5981
  Restart = "restart"
5902
5982
  }
5903
5983
  /**
@@ -5914,10 +5994,15 @@ export declare enum KnownCommandType {
5914
5994
  export declare type CommandType = string;
5915
5995
  /** Known values of {@link CommandState} that the service accepts. */
5916
5996
  export declare enum KnownCommandState {
5997
+ /** Unknown */
5917
5998
  Unknown = "Unknown",
5999
+ /** Accepted */
5918
6000
  Accepted = "Accepted",
6001
+ /** Running */
5919
6002
  Running = "Running",
6003
+ /** Succeeded */
5920
6004
  Succeeded = "Succeeded",
6005
+ /** Failed */
5921
6006
  Failed = "Failed"
5922
6007
  }
5923
6008
  /**
@@ -5934,7 +6019,9 @@ export declare enum KnownCommandState {
5934
6019
  export declare type CommandState = string;
5935
6020
  /** Known values of {@link NameCheckFailureReason} that the service accepts. */
5936
6021
  export declare enum KnownNameCheckFailureReason {
6022
+ /** AlreadyExists */
5937
6023
  AlreadyExists = "AlreadyExists",
6024
+ /** Invalid */
5938
6025
  Invalid = "Invalid"
5939
6026
  }
5940
6027
  /**
@@ -5948,10 +6035,15 @@ export declare enum KnownNameCheckFailureReason {
5948
6035
  export declare type NameCheckFailureReason = string;
5949
6036
  /** Known values of {@link ProjectSourcePlatform} that the service accepts. */
5950
6037
  export declare enum KnownProjectSourcePlatform {
6038
+ /** SQL */
5951
6039
  SQL = "SQL",
6040
+ /** MySQL */
5952
6041
  MySQL = "MySQL",
6042
+ /** PostgreSql */
5953
6043
  PostgreSql = "PostgreSql",
6044
+ /** MongoDb */
5954
6045
  MongoDb = "MongoDb",
6046
+ /** Unknown */
5955
6047
  Unknown = "Unknown"
5956
6048
  }
5957
6049
  /**
@@ -5968,11 +6060,17 @@ export declare enum KnownProjectSourcePlatform {
5968
6060
  export declare type ProjectSourcePlatform = string;
5969
6061
  /** Known values of {@link ProjectTargetPlatform} that the service accepts. */
5970
6062
  export declare enum KnownProjectTargetPlatform {
6063
+ /** Sqldb */
5971
6064
  Sqldb = "SQLDB",
6065
+ /** Sqlmi */
5972
6066
  Sqlmi = "SQLMI",
6067
+ /** AzureDbForMySql */
5973
6068
  AzureDbForMySql = "AzureDbForMySql",
6069
+ /** AzureDbForPostgreSql */
5974
6070
  AzureDbForPostgreSql = "AzureDbForPostgreSql",
6071
+ /** MongoDb */
5975
6072
  MongoDb = "MongoDb",
6073
+ /** Unknown */
5976
6074
  Unknown = "Unknown"
5977
6075
  }
5978
6076
  /**
@@ -5990,7 +6088,9 @@ export declare enum KnownProjectTargetPlatform {
5990
6088
  export declare type ProjectTargetPlatform = string;
5991
6089
  /** Known values of {@link ProjectProvisioningState} that the service accepts. */
5992
6090
  export declare enum KnownProjectProvisioningState {
6091
+ /** Deleting */
5993
6092
  Deleting = "Deleting",
6093
+ /** Succeeded */
5994
6094
  Succeeded = "Succeeded"
5995
6095
  }
5996
6096
  /**
@@ -6004,10 +6104,15 @@ export declare enum KnownProjectProvisioningState {
6004
6104
  export declare type ProjectProvisioningState = string;
6005
6105
  /** Known values of {@link AuthenticationType} that the service accepts. */
6006
6106
  export declare enum KnownAuthenticationType {
6107
+ /** None */
6007
6108
  None = "None",
6109
+ /** WindowsAuthentication */
6008
6110
  WindowsAuthentication = "WindowsAuthentication",
6111
+ /** SqlAuthentication */
6009
6112
  SqlAuthentication = "SqlAuthentication",
6113
+ /** ActiveDirectoryIntegrated */
6010
6114
  ActiveDirectoryIntegrated = "ActiveDirectoryIntegrated",
6115
+ /** ActiveDirectoryPassword */
6011
6116
  ActiveDirectoryPassword = "ActiveDirectoryPassword"
6012
6117
  }
6013
6118
  /**
@@ -6024,6 +6129,7 @@ export declare enum KnownAuthenticationType {
6024
6129
  export declare type AuthenticationType = string;
6025
6130
  /** Known values of {@link SqlSourcePlatform} that the service accepts. */
6026
6131
  export declare enum KnownSqlSourcePlatform {
6132
+ /** SqlOnPrem */
6027
6133
  SqlOnPrem = "SqlOnPrem"
6028
6134
  }
6029
6135
  /**
@@ -6036,12 +6142,19 @@ export declare enum KnownSqlSourcePlatform {
6036
6142
  export declare type SqlSourcePlatform = string;
6037
6143
  /** Known values of {@link BackupType} that the service accepts. */
6038
6144
  export declare enum KnownBackupType {
6145
+ /** Database */
6039
6146
  Database = "Database",
6147
+ /** TransactionLog */
6040
6148
  TransactionLog = "TransactionLog",
6149
+ /** File */
6041
6150
  File = "File",
6151
+ /** DifferentialDatabase */
6042
6152
  DifferentialDatabase = "DifferentialDatabase",
6153
+ /** DifferentialFile */
6043
6154
  DifferentialFile = "DifferentialFile",
6155
+ /** Partial */
6044
6156
  Partial = "Partial",
6157
+ /** DifferentialPartial */
6045
6158
  DifferentialPartial = "DifferentialPartial"
6046
6159
  }
6047
6160
  /**
@@ -6060,12 +6173,19 @@ export declare enum KnownBackupType {
6060
6173
  export declare type BackupType = string;
6061
6174
  /** Known values of {@link BackupFileStatus} that the service accepts. */
6062
6175
  export declare enum KnownBackupFileStatus {
6176
+ /** Arrived */
6063
6177
  Arrived = "Arrived",
6178
+ /** Queued */
6064
6179
  Queued = "Queued",
6180
+ /** Uploading */
6065
6181
  Uploading = "Uploading",
6182
+ /** Uploaded */
6066
6183
  Uploaded = "Uploaded",
6184
+ /** Restoring */
6067
6185
  Restoring = "Restoring",
6186
+ /** Restored */
6068
6187
  Restored = "Restored",
6188
+ /** Cancelled */
6069
6189
  Cancelled = "Cancelled"
6070
6190
  }
6071
6191
  /**
@@ -6084,7 +6204,9 @@ export declare enum KnownBackupFileStatus {
6084
6204
  export declare type BackupFileStatus = string;
6085
6205
  /** Known values of {@link MySqlTargetPlatformType} that the service accepts. */
6086
6206
  export declare enum KnownMySqlTargetPlatformType {
6207
+ /** SqlServer */
6087
6208
  SqlServer = "SqlServer",
6209
+ /** AzureDbForMySQL */
6088
6210
  AzureDbForMySQL = "AzureDbForMySQL"
6089
6211
  }
6090
6212
  /**
@@ -6098,10 +6220,15 @@ export declare enum KnownMySqlTargetPlatformType {
6098
6220
  export declare type MySqlTargetPlatformType = string;
6099
6221
  /** Known values of {@link DatabaseFileType} that the service accepts. */
6100
6222
  export declare enum KnownDatabaseFileType {
6223
+ /** Rows */
6101
6224
  Rows = "Rows",
6225
+ /** Log */
6102
6226
  Log = "Log",
6227
+ /** Filestream */
6103
6228
  Filestream = "Filestream",
6229
+ /** NotSupported */
6104
6230
  NotSupported = "NotSupported",
6231
+ /** Fulltext */
6105
6232
  Fulltext = "Fulltext"
6106
6233
  }
6107
6234
  /**
@@ -6118,12 +6245,19 @@ export declare enum KnownDatabaseFileType {
6118
6245
  export declare type DatabaseFileType = string;
6119
6246
  /** Known values of {@link DatabaseCompatLevel} that the service accepts. */
6120
6247
  export declare enum KnownDatabaseCompatLevel {
6248
+ /** CompatLevel80 */
6121
6249
  CompatLevel80 = "CompatLevel80",
6250
+ /** CompatLevel90 */
6122
6251
  CompatLevel90 = "CompatLevel90",
6252
+ /** CompatLevel100 */
6123
6253
  CompatLevel100 = "CompatLevel100",
6254
+ /** CompatLevel110 */
6124
6255
  CompatLevel110 = "CompatLevel110",
6256
+ /** CompatLevel120 */
6125
6257
  CompatLevel120 = "CompatLevel120",
6258
+ /** CompatLevel130 */
6126
6259
  CompatLevel130 = "CompatLevel130",
6260
+ /** CompatLevel140 */
6127
6261
  CompatLevel140 = "CompatLevel140"
6128
6262
  }
6129
6263
  /**
@@ -6142,14 +6276,23 @@ export declare enum KnownDatabaseCompatLevel {
6142
6276
  export declare type DatabaseCompatLevel = string;
6143
6277
  /** Known values of {@link DatabaseState} that the service accepts. */
6144
6278
  export declare enum KnownDatabaseState {
6279
+ /** Online */
6145
6280
  Online = "Online",
6281
+ /** Restoring */
6146
6282
  Restoring = "Restoring",
6283
+ /** Recovering */
6147
6284
  Recovering = "Recovering",
6285
+ /** RecoveryPending */
6148
6286
  RecoveryPending = "RecoveryPending",
6287
+ /** Suspect */
6149
6288
  Suspect = "Suspect",
6289
+ /** Emergency */
6150
6290
  Emergency = "Emergency",
6291
+ /** Offline */
6151
6292
  Offline = "Offline",
6293
+ /** Copying */
6152
6294
  Copying = "Copying",
6295
+ /** OfflineSecondary */
6153
6296
  OfflineSecondary = "OfflineSecondary"
6154
6297
  }
6155
6298
  /**
@@ -6170,12 +6313,19 @@ export declare enum KnownDatabaseState {
6170
6313
  export declare type DatabaseState = string;
6171
6314
  /** Known values of {@link LoginType} that the service accepts. */
6172
6315
  export declare enum KnownLoginType {
6316
+ /** WindowsUser */
6173
6317
  WindowsUser = "WindowsUser",
6318
+ /** WindowsGroup */
6174
6319
  WindowsGroup = "WindowsGroup",
6320
+ /** SqlLogin */
6175
6321
  SqlLogin = "SqlLogin",
6322
+ /** Certificate */
6176
6323
  Certificate = "Certificate",
6324
+ /** AsymmetricKey */
6177
6325
  AsymmetricKey = "AsymmetricKey",
6326
+ /** ExternalUser */
6178
6327
  ExternalUser = "ExternalUser",
6328
+ /** ExternalGroup */
6179
6329
  ExternalGroup = "ExternalGroup"
6180
6330
  }
6181
6331
  /**
@@ -6194,8 +6344,11 @@ export declare enum KnownLoginType {
6194
6344
  export declare type LoginType = string;
6195
6345
  /** Known values of {@link SchemaMigrationOption} that the service accepts. */
6196
6346
  export declare enum KnownSchemaMigrationOption {
6347
+ /** None */
6197
6348
  None = "None",
6349
+ /** ExtractFromSource */
6198
6350
  ExtractFromSource = "ExtractFromSource",
6351
+ /** UseStorageFile */
6199
6352
  UseStorageFile = "UseStorageFile"
6200
6353
  }
6201
6354
  /**
@@ -6210,12 +6363,19 @@ export declare enum KnownSchemaMigrationOption {
6210
6363
  export declare type SchemaMigrationOption = string;
6211
6364
  /** Known values of {@link MigrationState} that the service accepts. */
6212
6365
  export declare enum KnownMigrationState {
6366
+ /** None */
6213
6367
  None = "None",
6368
+ /** InProgress */
6214
6369
  InProgress = "InProgress",
6370
+ /** Failed */
6215
6371
  Failed = "Failed",
6372
+ /** Warning */
6216
6373
  Warning = "Warning",
6374
+ /** Completed */
6217
6375
  Completed = "Completed",
6376
+ /** Skipped */
6218
6377
  Skipped = "Skipped",
6378
+ /** Stopped */
6219
6379
  Stopped = "Stopped"
6220
6380
  }
6221
6381
  /**
@@ -6234,15 +6394,25 @@ export declare enum KnownMigrationState {
6234
6394
  export declare type MigrationState = string;
6235
6395
  /** Known values of {@link SchemaMigrationStage} that the service accepts. */
6236
6396
  export declare enum KnownSchemaMigrationStage {
6397
+ /** NotStarted */
6237
6398
  NotStarted = "NotStarted",
6399
+ /** ValidatingInputs */
6238
6400
  ValidatingInputs = "ValidatingInputs",
6401
+ /** CollectingObjects */
6239
6402
  CollectingObjects = "CollectingObjects",
6403
+ /** DownloadingScript */
6240
6404
  DownloadingScript = "DownloadingScript",
6405
+ /** GeneratingScript */
6241
6406
  GeneratingScript = "GeneratingScript",
6407
+ /** UploadingScript */
6242
6408
  UploadingScript = "UploadingScript",
6409
+ /** DeployingSchema */
6243
6410
  DeployingSchema = "DeployingSchema",
6411
+ /** Completed */
6244
6412
  Completed = "Completed",
6413
+ /** CompletedWithWarnings */
6245
6414
  CompletedWithWarnings = "CompletedWithWarnings",
6415
+ /** Failed */
6246
6416
  Failed = "Failed"
6247
6417
  }
6248
6418
  /**
@@ -6264,23 +6434,41 @@ export declare enum KnownSchemaMigrationStage {
6264
6434
  export declare type SchemaMigrationStage = string;
6265
6435
  /** Known values of {@link SyncDatabaseMigrationReportingState} that the service accepts. */
6266
6436
  export declare enum KnownSyncDatabaseMigrationReportingState {
6437
+ /** Undefined */
6267
6438
  Undefined = "UNDEFINED",
6439
+ /** Configuring */
6268
6440
  Configuring = "CONFIGURING",
6441
+ /** Initialiazing */
6269
6442
  Initialiazing = "INITIALIAZING",
6443
+ /** Starting */
6270
6444
  Starting = "STARTING",
6445
+ /** Running */
6271
6446
  Running = "RUNNING",
6447
+ /** ReadyTOComplete */
6272
6448
  ReadyTOComplete = "READY_TO_COMPLETE",
6449
+ /** Completing */
6273
6450
  Completing = "COMPLETING",
6451
+ /** Complete */
6274
6452
  Complete = "COMPLETE",
6453
+ /** Cancelling */
6275
6454
  Cancelling = "CANCELLING",
6455
+ /** Cancelled */
6276
6456
  Cancelled = "CANCELLED",
6457
+ /** Failed */
6277
6458
  Failed = "FAILED",
6459
+ /** Validating */
6278
6460
  Validating = "VALIDATING",
6461
+ /** ValidationComplete */
6279
6462
  ValidationComplete = "VALIDATION_COMPLETE",
6463
+ /** ValidationFailed */
6280
6464
  ValidationFailed = "VALIDATION_FAILED",
6465
+ /** RestoreINProgress */
6281
6466
  RestoreINProgress = "RESTORE_IN_PROGRESS",
6467
+ /** RestoreCompleted */
6282
6468
  RestoreCompleted = "RESTORE_COMPLETED",
6469
+ /** BackupINProgress */
6283
6470
  BackupINProgress = "BACKUP_IN_PROGRESS",
6471
+ /** BackupCompleted */
6284
6472
  BackupCompleted = "BACKUP_COMPLETED"
6285
6473
  }
6286
6474
  /**
@@ -6310,11 +6498,17 @@ export declare enum KnownSyncDatabaseMigrationReportingState {
6310
6498
  export declare type SyncDatabaseMigrationReportingState = string;
6311
6499
  /** Known values of {@link SyncTableMigrationState} that the service accepts. */
6312
6500
  export declare enum KnownSyncTableMigrationState {
6501
+ /** BeforeLoad */
6313
6502
  BeforeLoad = "BEFORE_LOAD",
6503
+ /** FullLoad */
6314
6504
  FullLoad = "FULL_LOAD",
6505
+ /** Completed */
6315
6506
  Completed = "COMPLETED",
6507
+ /** Canceled */
6316
6508
  Canceled = "CANCELED",
6509
+ /** Error */
6317
6510
  Error = "ERROR",
6511
+ /** Failed */
6318
6512
  Failed = "FAILED"
6319
6513
  }
6320
6514
  /**
@@ -6332,16 +6526,27 @@ export declare enum KnownSyncTableMigrationState {
6332
6526
  export declare type SyncTableMigrationState = string;
6333
6527
  /** Known values of {@link ScenarioSource} that the service accepts. */
6334
6528
  export declare enum KnownScenarioSource {
6529
+ /** Access */
6335
6530
  Access = "Access",
6531
+ /** DB2 */
6336
6532
  DB2 = "DB2",
6533
+ /** MySQL */
6337
6534
  MySQL = "MySQL",
6535
+ /** Oracle */
6338
6536
  Oracle = "Oracle",
6537
+ /** SQL */
6339
6538
  SQL = "SQL",
6539
+ /** Sybase */
6340
6540
  Sybase = "Sybase",
6541
+ /** PostgreSQL */
6341
6542
  PostgreSQL = "PostgreSQL",
6543
+ /** MongoDB */
6342
6544
  MongoDB = "MongoDB",
6545
+ /** Sqlrds */
6343
6546
  Sqlrds = "SQLRDS",
6547
+ /** MySqlrds */
6344
6548
  MySqlrds = "MySQLRDS",
6549
+ /** PostgreSqlrds */
6345
6550
  PostgreSqlrds = "PostgreSQLRDS"
6346
6551
  }
6347
6552
  /**
@@ -6364,12 +6569,19 @@ export declare enum KnownScenarioSource {
6364
6569
  export declare type ScenarioSource = string;
6365
6570
  /** Known values of {@link ScenarioTarget} that the service accepts. */
6366
6571
  export declare enum KnownScenarioTarget {
6572
+ /** SQLServer */
6367
6573
  SQLServer = "SQLServer",
6574
+ /** Sqldb */
6368
6575
  Sqldb = "SQLDB",
6576
+ /** Sqldw */
6369
6577
  Sqldw = "SQLDW",
6578
+ /** Sqlmi */
6370
6579
  Sqlmi = "SQLMI",
6580
+ /** AzureDBForMySql */
6371
6581
  AzureDBForMySql = "AzureDBForMySql",
6582
+ /** AzureDBForPostgresSQL */
6372
6583
  AzureDBForPostgresSQL = "AzureDBForPostgresSQL",
6584
+ /** MongoDB */
6373
6585
  MongoDB = "MongoDB"
6374
6586
  }
6375
6587
  /**
@@ -6388,11 +6600,17 @@ export declare enum KnownScenarioTarget {
6388
6600
  export declare type ScenarioTarget = string;
6389
6601
  /** Known values of {@link ReplicateMigrationState} that the service accepts. */
6390
6602
  export declare enum KnownReplicateMigrationState {
6603
+ /** Undefined */
6391
6604
  Undefined = "UNDEFINED",
6605
+ /** Validating */
6392
6606
  Validating = "VALIDATING",
6607
+ /** Pending */
6393
6608
  Pending = "PENDING",
6609
+ /** Complete */
6394
6610
  Complete = "COMPLETE",
6611
+ /** ActionRequired */
6395
6612
  ActionRequired = "ACTION_REQUIRED",
6613
+ /** Failed */
6396
6614
  Failed = "FAILED"
6397
6615
  }
6398
6616
  /**
@@ -6410,15 +6628,25 @@ export declare enum KnownReplicateMigrationState {
6410
6628
  export declare type ReplicateMigrationState = string;
6411
6629
  /** Known values of {@link MigrationStatus} that the service accepts. */
6412
6630
  export declare enum KnownMigrationStatus {
6631
+ /** Default */
6413
6632
  Default = "Default",
6633
+ /** Connecting */
6414
6634
  Connecting = "Connecting",
6635
+ /** SourceAndTargetSelected */
6415
6636
  SourceAndTargetSelected = "SourceAndTargetSelected",
6637
+ /** SelectLogins */
6416
6638
  SelectLogins = "SelectLogins",
6639
+ /** Configured */
6417
6640
  Configured = "Configured",
6641
+ /** Running */
6418
6642
  Running = "Running",
6643
+ /** Error */
6419
6644
  Error = "Error",
6645
+ /** Stopped */
6420
6646
  Stopped = "Stopped",
6647
+ /** Completed */
6421
6648
  Completed = "Completed",
6649
+ /** CompletedWithWarnings */
6422
6650
  CompletedWithWarnings = "CompletedWithWarnings"
6423
6651
  }
6424
6652
  /**
@@ -6440,13 +6668,21 @@ export declare enum KnownMigrationStatus {
6440
6668
  export declare type MigrationStatus = string;
6441
6669
  /** Known values of {@link ValidationStatus} that the service accepts. */
6442
6670
  export declare enum KnownValidationStatus {
6671
+ /** Default */
6443
6672
  Default = "Default",
6673
+ /** NotStarted */
6444
6674
  NotStarted = "NotStarted",
6675
+ /** Initialized */
6445
6676
  Initialized = "Initialized",
6677
+ /** InProgress */
6446
6678
  InProgress = "InProgress",
6679
+ /** Completed */
6447
6680
  Completed = "Completed",
6681
+ /** CompletedWithIssues */
6448
6682
  CompletedWithIssues = "CompletedWithIssues",
6683
+ /** Stopped */
6449
6684
  Stopped = "Stopped",
6685
+ /** Failed */
6450
6686
  Failed = "Failed"
6451
6687
  }
6452
6688
  /**
@@ -6466,11 +6702,17 @@ export declare enum KnownValidationStatus {
6466
6702
  export declare type ValidationStatus = string;
6467
6703
  /** Known values of {@link DatabaseMigrationStage} that the service accepts. */
6468
6704
  export declare enum KnownDatabaseMigrationStage {
6705
+ /** None */
6469
6706
  None = "None",
6707
+ /** Initialize */
6470
6708
  Initialize = "Initialize",
6709
+ /** Backup */
6471
6710
  Backup = "Backup",
6711
+ /** FileCopy */
6472
6712
  FileCopy = "FileCopy",
6713
+ /** Restore */
6473
6714
  Restore = "Restore",
6715
+ /** Completed */
6474
6716
  Completed = "Completed"
6475
6717
  }
6476
6718
  /**
@@ -6488,8 +6730,11 @@ export declare enum KnownDatabaseMigrationStage {
6488
6730
  export declare type DatabaseMigrationStage = string;
6489
6731
  /** Known values of {@link Severity} that the service accepts. */
6490
6732
  export declare enum KnownSeverity {
6733
+ /** Message */
6491
6734
  Message = "Message",
6735
+ /** Warning */
6492
6736
  Warning = "Warning",
6737
+ /** Error */
6493
6738
  Error = "Error"
6494
6739
  }
6495
6740
  /**
@@ -6504,10 +6749,15 @@ export declare enum KnownSeverity {
6504
6749
  export declare type Severity = string;
6505
6750
  /** Known values of {@link ObjectType} that the service accepts. */
6506
6751
  export declare enum KnownObjectType {
6752
+ /** StoredProcedures */
6507
6753
  StoredProcedures = "StoredProcedures",
6754
+ /** Table */
6508
6755
  Table = "Table",
6756
+ /** User */
6509
6757
  User = "User",
6758
+ /** View */
6510
6759
  View = "View",
6760
+ /** Function */
6511
6761
  Function = "Function"
6512
6762
  }
6513
6763
  /**
@@ -6524,8 +6774,11 @@ export declare enum KnownObjectType {
6524
6774
  export declare type ObjectType = string;
6525
6775
  /** Known values of {@link UpdateActionType} that the service accepts. */
6526
6776
  export declare enum KnownUpdateActionType {
6777
+ /** DeletedOnTarget */
6527
6778
  DeletedOnTarget = "DeletedOnTarget",
6779
+ /** ChangedOnTarget */
6528
6780
  ChangedOnTarget = "ChangedOnTarget",
6781
+ /** AddedOnTarget */
6529
6782
  AddedOnTarget = "AddedOnTarget"
6530
6783
  }
6531
6784
  /**
@@ -6540,15 +6793,25 @@ export declare enum KnownUpdateActionType {
6540
6793
  export declare type UpdateActionType = string;
6541
6794
  /** Known values of {@link DatabaseMigrationState} that the service accepts. */
6542
6795
  export declare enum KnownDatabaseMigrationState {
6796
+ /** Undefined */
6543
6797
  Undefined = "UNDEFINED",
6798
+ /** Initial */
6544
6799
  Initial = "INITIAL",
6800
+ /** FullBackupUploadStart */
6545
6801
  FullBackupUploadStart = "FULL_BACKUP_UPLOAD_START",
6802
+ /** LOGShippingStart */
6546
6803
  LOGShippingStart = "LOG_SHIPPING_START",
6804
+ /** UploadLOGFilesStart */
6547
6805
  UploadLOGFilesStart = "UPLOAD_LOG_FILES_START",
6806
+ /** CutoverStart */
6548
6807
  CutoverStart = "CUTOVER_START",
6808
+ /** PostCutoverComplete */
6549
6809
  PostCutoverComplete = "POST_CUTOVER_COMPLETE",
6810
+ /** Completed */
6550
6811
  Completed = "COMPLETED",
6812
+ /** Cancelled */
6551
6813
  Cancelled = "CANCELLED",
6814
+ /** Failed */
6552
6815
  Failed = "FAILED"
6553
6816
  }
6554
6817
  /**
@@ -6570,7 +6833,9 @@ export declare enum KnownDatabaseMigrationState {
6570
6833
  export declare type DatabaseMigrationState = string;
6571
6834
  /** Known values of {@link BackupMode} that the service accepts. */
6572
6835
  export declare enum KnownBackupMode {
6836
+ /** CreateBackup */
6573
6837
  CreateBackup = "CreateBackup",
6838
+ /** ExistingBackup */
6574
6839
  ExistingBackup = "ExistingBackup"
6575
6840
  }
6576
6841
  /**
@@ -6584,14 +6849,23 @@ export declare enum KnownBackupMode {
6584
6849
  export declare type BackupMode = string;
6585
6850
  /** Known values of {@link LoginMigrationStage} that the service accepts. */
6586
6851
  export declare enum KnownLoginMigrationStage {
6852
+ /** None */
6587
6853
  None = "None",
6854
+ /** Initialize */
6588
6855
  Initialize = "Initialize",
6856
+ /** LoginMigration */
6589
6857
  LoginMigration = "LoginMigration",
6858
+ /** EstablishUserMapping */
6590
6859
  EstablishUserMapping = "EstablishUserMapping",
6860
+ /** AssignRoleMembership */
6591
6861
  AssignRoleMembership = "AssignRoleMembership",
6862
+ /** AssignRoleOwnership */
6592
6863
  AssignRoleOwnership = "AssignRoleOwnership",
6864
+ /** EstablishServerPermissions */
6593
6865
  EstablishServerPermissions = "EstablishServerPermissions",
6866
+ /** EstablishObjectPermissions */
6594
6867
  EstablishObjectPermissions = "EstablishObjectPermissions",
6868
+ /** Completed */
6595
6869
  Completed = "Completed"
6596
6870
  }
6597
6871
  /**
@@ -6612,6 +6886,7 @@ export declare enum KnownLoginMigrationStage {
6612
6886
  export declare type LoginMigrationStage = string;
6613
6887
  /** Known values of {@link SsisStoreType} that the service accepts. */
6614
6888
  export declare enum KnownSsisStoreType {
6889
+ /** SsisCatalog */
6615
6890
  SsisCatalog = "SsisCatalog"
6616
6891
  }
6617
6892
  /**
@@ -6624,7 +6899,9 @@ export declare enum KnownSsisStoreType {
6624
6899
  export declare type SsisStoreType = string;
6625
6900
  /** Known values of {@link SsisMigrationOverwriteOption} that the service accepts. */
6626
6901
  export declare enum KnownSsisMigrationOverwriteOption {
6902
+ /** Ignore */
6627
6903
  Ignore = "Ignore",
6904
+ /** Overwrite */
6628
6905
  Overwrite = "Overwrite"
6629
6906
  }
6630
6907
  /**
@@ -6638,9 +6915,13 @@ export declare enum KnownSsisMigrationOverwriteOption {
6638
6915
  export declare type SsisMigrationOverwriteOption = string;
6639
6916
  /** Known values of {@link SsisMigrationStage} that the service accepts. */
6640
6917
  export declare enum KnownSsisMigrationStage {
6918
+ /** None */
6641
6919
  None = "None",
6920
+ /** Initialize */
6642
6921
  Initialize = "Initialize",
6922
+ /** InProgress */
6643
6923
  InProgress = "InProgress",
6924
+ /** Completed */
6644
6925
  Completed = "Completed"
6645
6926
  }
6646
6927
  /**
@@ -6656,8 +6937,11 @@ export declare enum KnownSsisMigrationStage {
6656
6937
  export declare type SsisMigrationStage = string;
6657
6938
  /** Known values of {@link MongoDbShardKeyOrder} that the service accepts. */
6658
6939
  export declare enum KnownMongoDbShardKeyOrder {
6940
+ /** Forward */
6659
6941
  Forward = "Forward",
6942
+ /** Reverse */
6660
6943
  Reverse = "Reverse",
6944
+ /** Hashed */
6661
6945
  Hashed = "Hashed"
6662
6946
  }
6663
6947
  /**
@@ -6672,8 +6956,11 @@ export declare enum KnownMongoDbShardKeyOrder {
6672
6956
  export declare type MongoDbShardKeyOrder = string;
6673
6957
  /** Known values of {@link MongoDbClusterType} that the service accepts. */
6674
6958
  export declare enum KnownMongoDbClusterType {
6959
+ /** BlobContainer */
6675
6960
  BlobContainer = "BlobContainer",
6961
+ /** CosmosDb */
6676
6962
  CosmosDb = "CosmosDb",
6963
+ /** MongoDb */
6677
6964
  MongoDb = "MongoDb"
6678
6965
  }
6679
6966
  /**
@@ -6688,8 +6975,11 @@ export declare enum KnownMongoDbClusterType {
6688
6975
  export declare type MongoDbClusterType = string;
6689
6976
  /** Known values of {@link MongoDbErrorType} that the service accepts. */
6690
6977
  export declare enum KnownMongoDbErrorType {
6978
+ /** Error */
6691
6979
  Error = "Error",
6980
+ /** ValidationError */
6692
6981
  ValidationError = "ValidationError",
6982
+ /** Warning */
6693
6983
  Warning = "Warning"
6694
6984
  }
6695
6985
  /**
@@ -6704,8 +6994,11 @@ export declare enum KnownMongoDbErrorType {
6704
6994
  export declare type MongoDbErrorType = string;
6705
6995
  /** Known values of {@link MongoDbProgressResultType} that the service accepts. */
6706
6996
  export declare enum KnownMongoDbProgressResultType {
6997
+ /** Migration */
6707
6998
  Migration = "Migration",
6999
+ /** Database */
6708
7000
  Database = "Database",
7001
+ /** Collection */
6709
7002
  Collection = "Collection"
6710
7003
  }
6711
7004
  /**
@@ -6720,16 +7013,27 @@ export declare enum KnownMongoDbProgressResultType {
6720
7013
  export declare type MongoDbProgressResultType = string;
6721
7014
  /** Known values of {@link MongoDbMigrationState} that the service accepts. */
6722
7015
  export declare enum KnownMongoDbMigrationState {
7016
+ /** NotStarted */
6723
7017
  NotStarted = "NotStarted",
7018
+ /** ValidatingInput */
6724
7019
  ValidatingInput = "ValidatingInput",
7020
+ /** Initializing */
6725
7021
  Initializing = "Initializing",
7022
+ /** Restarting */
6726
7023
  Restarting = "Restarting",
7024
+ /** Copying */
6727
7025
  Copying = "Copying",
7026
+ /** InitialReplay */
6728
7027
  InitialReplay = "InitialReplay",
7028
+ /** Replaying */
6729
7029
  Replaying = "Replaying",
7030
+ /** Finalizing */
6730
7031
  Finalizing = "Finalizing",
7032
+ /** Complete */
6731
7033
  Complete = "Complete",
7034
+ /** Canceled */
6732
7035
  Canceled = "Canceled",
7036
+ /** Failed */
6733
7037
  Failed = "Failed"
6734
7038
  }
6735
7039
  /**
@@ -6752,8 +7056,11 @@ export declare enum KnownMongoDbMigrationState {
6752
7056
  export declare type MongoDbMigrationState = string;
6753
7057
  /** Known values of {@link MongoDbReplication} that the service accepts. */
6754
7058
  export declare enum KnownMongoDbReplication {
7059
+ /** Disabled */
6755
7060
  Disabled = "Disabled",
7061
+ /** OneTime */
6756
7062
  OneTime = "OneTime",
7063
+ /** Continuous */
6757
7064
  Continuous = "Continuous"
6758
7065
  }
6759
7066
  /**
@@ -6768,11 +7075,17 @@ export declare enum KnownMongoDbReplication {
6768
7075
  export declare type MongoDbReplication = string;
6769
7076
  /** Known values of {@link DataMigrationResultCode} that the service accepts. */
6770
7077
  export declare enum KnownDataMigrationResultCode {
7078
+ /** Initial */
6771
7079
  Initial = "Initial",
7080
+ /** Completed */
6772
7081
  Completed = "Completed",
7082
+ /** ObjectNotExistsInSource */
6773
7083
  ObjectNotExistsInSource = "ObjectNotExistsInSource",
7084
+ /** ObjectNotExistsInTarget */
6774
7085
  ObjectNotExistsInTarget = "ObjectNotExistsInTarget",
7086
+ /** TargetObjectIsInaccessible */
6775
7087
  TargetObjectIsInaccessible = "TargetObjectIsInaccessible",
7088
+ /** FatalError */
6776
7089
  FatalError = "FatalError"
6777
7090
  }
6778
7091
  /**
@@ -6790,8 +7103,11 @@ export declare enum KnownDataMigrationResultCode {
6790
7103
  export declare type DataMigrationResultCode = string;
6791
7104
  /** Known values of {@link ErrorType} that the service accepts. */
6792
7105
  export declare enum KnownErrorType {
7106
+ /** Default */
6793
7107
  Default = "Default",
7108
+ /** Warning */
6794
7109
  Warning = "Warning",
7110
+ /** Error */
6795
7111
  Error = "Error"
6796
7112
  }
6797
7113
  /**