azure-native.datamigration.Task
Explore with Pulumi AI
A task resource API Version: 2018-04-19.
Example Usage
Tasks_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var task = new AzureNative.DataMigration.Task("task", new()
    {
        GroupName = "DmsSdkRg",
        ProjectName = "DmsSdkProject",
        Properties = new AzureNative.DataMigration.Inputs.ConnectToTargetSqlDbTaskPropertiesArgs
        {
            Input = new AzureNative.DataMigration.Inputs.ConnectToTargetSqlDbTaskInputArgs
            {
                TargetConnectionInfo = new AzureNative.DataMigration.Inputs.SqlConnectionInfoArgs
                {
                    Authentication = "SqlAuthentication",
                    DataSource = "ssma-test-server.database.windows.net",
                    EncryptConnection = true,
                    Password = "testpassword",
                    TrustServerCertificate = true,
                    Type = "SqlConnectionInfo",
                    UserName = "testuser",
                },
            },
            TaskType = "ConnectToTarget.SqlDb",
        },
        ServiceName = "DmsSdkService",
        TaskName = "DmsSdkTask",
    });
});
package main
import (
	datamigration "github.com/pulumi/pulumi-azure-native-sdk/datamigration"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datamigration.NewTask(ctx, "task", &datamigration.TaskArgs{
			GroupName:   pulumi.String("DmsSdkRg"),
			ProjectName: pulumi.String("DmsSdkProject"),
			Properties: datamigration.ConnectToTargetSqlDbTaskProperties{
				Input: datamigration.ConnectToTargetSqlDbTaskInput{
					TargetConnectionInfo: datamigration.SqlConnectionInfo{
						Authentication:         "SqlAuthentication",
						DataSource:             "ssma-test-server.database.windows.net",
						EncryptConnection:      true,
						Password:               "testpassword",
						TrustServerCertificate: true,
						Type:                   "SqlConnectionInfo",
						UserName:               "testuser",
					},
				},
				TaskType: "ConnectToTarget.SqlDb",
			},
			ServiceName: pulumi.String("DmsSdkService"),
			TaskName:    pulumi.String("DmsSdkTask"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datamigration.Task;
import com.pulumi.azurenative.datamigration.TaskArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var task = new Task("task", TaskArgs.builder()        
            .groupName("DmsSdkRg")
            .projectName("DmsSdkProject")
            .properties(Map.ofEntries(
                Map.entry("input", Map.of("targetConnectionInfo", Map.ofEntries(
                    Map.entry("authentication", "SqlAuthentication"),
                    Map.entry("dataSource", "ssma-test-server.database.windows.net"),
                    Map.entry("encryptConnection", true),
                    Map.entry("password", "testpassword"),
                    Map.entry("trustServerCertificate", true),
                    Map.entry("type", "SqlConnectionInfo"),
                    Map.entry("userName", "testuser")
                ))),
                Map.entry("taskType", "ConnectToTarget.SqlDb")
            ))
            .serviceName("DmsSdkService")
            .taskName("DmsSdkTask")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const task = new azure_native.datamigration.Task("task", {
    groupName: "DmsSdkRg",
    projectName: "DmsSdkProject",
    properties: {
        input: {
            targetConnectionInfo: {
                authentication: "SqlAuthentication",
                dataSource: "ssma-test-server.database.windows.net",
                encryptConnection: true,
                password: "testpassword",
                trustServerCertificate: true,
                type: "SqlConnectionInfo",
                userName: "testuser",
            },
        },
        taskType: "ConnectToTarget.SqlDb",
    },
    serviceName: "DmsSdkService",
    taskName: "DmsSdkTask",
});
import pulumi
import pulumi_azure_native as azure_native
task = azure_native.datamigration.Task("task",
    group_name="DmsSdkRg",
    project_name="DmsSdkProject",
    properties=azure_native.datamigration.ConnectToTargetSqlDbTaskPropertiesArgs(
        input=azure_native.datamigration.ConnectToTargetSqlDbTaskInputArgs(
            target_connection_info=azure_native.datamigration.SqlConnectionInfoArgs(
                authentication="SqlAuthentication",
                data_source="ssma-test-server.database.windows.net",
                encrypt_connection=True,
                password="testpassword",
                trust_server_certificate=True,
                type="SqlConnectionInfo",
                user_name="testuser",
            ),
        ),
        task_type="ConnectToTarget.SqlDb",
    ),
    service_name="DmsSdkService",
    task_name="DmsSdkTask")
resources:
  task:
    type: azure-native:datamigration:Task
    properties:
      groupName: DmsSdkRg
      projectName: DmsSdkProject
      properties:
        input:
          targetConnectionInfo:
            authentication: SqlAuthentication
            dataSource: ssma-test-server.database.windows.net
            encryptConnection: true
            password: testpassword
            trustServerCertificate: true
            type: SqlConnectionInfo
            userName: testuser
        taskType: ConnectToTarget.SqlDb
      serviceName: DmsSdkService
      taskName: DmsSdkTask
Create Task Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Task(name: string, args: TaskArgs, opts?: CustomResourceOptions);@overload
def Task(resource_name: str,
         args: TaskArgs,
         opts: Optional[ResourceOptions] = None)
@overload
def Task(resource_name: str,
         opts: Optional[ResourceOptions] = None,
         group_name: Optional[str] = None,
         project_name: Optional[str] = None,
         service_name: Optional[str] = None,
         properties: Optional[Union[ConnectToSourcePostgreSqlSyncTaskPropertiesArgs, ConnectToSourceSqlServerSyncTaskPropertiesArgs, ConnectToSourceSqlServerTaskPropertiesArgs, ConnectToTargetAzureDbForMySqlTaskPropertiesArgs, ConnectToTargetAzureDbForPostgreSqlSyncTaskPropertiesArgs, ConnectToTargetSqlDbTaskPropertiesArgs, ConnectToTargetSqlMISyncTaskPropertiesArgs, ConnectToTargetSqlMITaskPropertiesArgs, ConnectToTargetSqlSqlDbSyncTaskPropertiesArgs, GetTdeCertificatesSqlTaskPropertiesArgs, GetUserTablesSqlSyncTaskPropertiesArgs, GetUserTablesSqlTaskPropertiesArgs, MigrateMySqlAzureDbForMySqlSyncTaskPropertiesArgs, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskPropertiesArgs, MigrateSqlServerSqlDbSyncTaskPropertiesArgs, MigrateSqlServerSqlDbTaskPropertiesArgs, MigrateSqlServerSqlMISyncTaskPropertiesArgs, MigrateSqlServerSqlMITaskPropertiesArgs, ValidateMigrationInputSqlServerSqlDbSyncTaskPropertiesArgs, ValidateMigrationInputSqlServerSqlMISyncTaskPropertiesArgs, ValidateMigrationInputSqlServerSqlMITaskPropertiesArgs]] = None,
         task_name: Optional[str] = None)func NewTask(ctx *Context, name string, args TaskArgs, opts ...ResourceOption) (*Task, error)public Task(string name, TaskArgs args, CustomResourceOptions? opts = null)type: azure-native:datamigration:Task
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TaskArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TaskArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TaskArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TaskArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeTaskResource = new AzureNative.Datamigration.Task("azure-nativeTaskResource", new()
{
    GroupName = "string",
    ProjectName = "string",
    ServiceName = "string",
    Properties = 
    {
        { "taskType", "ConnectToSource.PostgreSql.Sync" },
        { "input", 
        {
            { "sourceConnectionInfo", 
            {
                { "port", 0 },
                { "serverName", "string" },
                { "type", "PostgreSqlConnectionInfo" },
                { "databaseName", "string" },
                { "password", "string" },
                { "userName", "string" },
            } },
        } },
    },
    TaskName = "string",
});
example, err := datamigration.NewTask(ctx, "azure-nativeTaskResource", &datamigration.TaskArgs{
	GroupName:   "string",
	ProjectName: "string",
	ServiceName: "string",
	Properties: map[string]interface{}{
		"taskType": "ConnectToSource.PostgreSql.Sync",
		"input": map[string]interface{}{
			"sourceConnectionInfo": map[string]interface{}{
				"port":         0,
				"serverName":   "string",
				"type":         "PostgreSqlConnectionInfo",
				"databaseName": "string",
				"password":     "string",
				"userName":     "string",
			},
		},
	},
	TaskName: "string",
})
var azure_nativeTaskResource = new Task("azure-nativeTaskResource", TaskArgs.builder()
    .groupName("string")
    .projectName("string")
    .serviceName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .taskName("string")
    .build());
azure_native_task_resource = azure_native.datamigration.Task("azure-nativeTaskResource",
    group_name=string,
    project_name=string,
    service_name=string,
    properties={
        taskType: ConnectToSource.PostgreSql.Sync,
        input: {
            sourceConnectionInfo: {
                port: 0,
                serverName: string,
                type: PostgreSqlConnectionInfo,
                databaseName: string,
                password: string,
                userName: string,
            },
        },
    },
    task_name=string)
const azure_nativeTaskResource = new azure_native.datamigration.Task("azure-nativeTaskResource", {
    groupName: "string",
    projectName: "string",
    serviceName: "string",
    properties: {
        taskType: "ConnectToSource.PostgreSql.Sync",
        input: {
            sourceConnectionInfo: {
                port: 0,
                serverName: "string",
                type: "PostgreSqlConnectionInfo",
                databaseName: "string",
                password: "string",
                userName: "string",
            },
        },
    },
    taskName: "string",
});
type: azure-native:datamigration:Task
properties:
    groupName: string
    projectName: string
    properties:
        input:
            sourceConnectionInfo:
                databaseName: string
                password: string
                port: 0
                serverName: string
                type: PostgreSqlConnectionInfo
                userName: string
        taskType: ConnectToSource.PostgreSql.Sync
    serviceName: string
    taskName: string
Task Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Task resource accepts the following input properties:
- GroupName string
- Name of the resource group
- ProjectName string
- Name of the project
- ServiceName string
- Name of the service
- Properties
Pulumi.Azure | Pulumi.Native. Data Migration. Inputs. Connect To Source Postgre Sql Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Source Sql Server Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Source Sql Server Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Target Azure Db For My Sql Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Target Azure Db For Postgre Sql Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Target Sql Db Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Target Sql MISync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Target Sql MITask Properties Azure | Pulumi.Native. Data Migration. Inputs. Connect To Target Sql Sql Db Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Get Tde Certificates Sql Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Get User Tables Sql Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Get User Tables Sql Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Migrate My Sql Azure Db For My Sql Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Migrate Sql Server Sql Db Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Migrate Sql Server Sql Db Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Migrate Sql Server Sql MISync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Migrate Sql Server Sql MITask Properties Azure | Pulumi.Native. Data Migration. Inputs. Validate Migration Input Sql Server Sql Db Sync Task Properties Azure | Pulumi.Native. Data Migration. Inputs. Validate Migration Input Sql Server Sql MISync Task Properties Azure Native. Data Migration. Inputs. Validate Migration Input Sql Server Sql MITask Properties 
- Custom task properties
- TaskName string
- Name of the Task
- GroupName string
- Name of the resource group
- ProjectName string
- Name of the project
- ServiceName string
- Name of the service
- Properties
ConnectTo | ConnectSource Postgre Sql Sync Task Properties Args To | ConnectSource Sql Server Sync Task Properties Args To | ConnectSource Sql Server Task Properties Args To | ConnectTarget Azure Db For My Sql Task Properties Args To | ConnectTarget Azure Db For Postgre Sql Sync Task Properties Args To | ConnectTarget Sql Db Task Properties Args To | ConnectTarget Sql MISync Task Properties Args To | ConnectTarget Sql MITask Properties Args To | GetTarget Sql Sql Db Sync Task Properties Args Tde | GetCertificates Sql Task Properties Args User | GetTables Sql Sync Task Properties Args User | MigrateTables Sql Task Properties Args My | MigrateSql Azure Db For My Sql Sync Task Properties Args Postgre | MigrateSql Azure Db For Postgre Sql Sync Task Properties Args Sql | MigrateServer Sql Db Sync Task Properties Args Sql | MigrateServer Sql Db Task Properties Args Sql | MigrateServer Sql MISync Task Properties Args Sql | ValidateServer Sql MITask Properties Args Migration | ValidateInput Sql Server Sql Db Sync Task Properties Args Migration | ValidateInput Sql Server Sql MISync Task Properties Args Migration Input Sql Server Sql MITask Properties Args 
- Custom task properties
- TaskName string
- Name of the Task
- groupName String
- Name of the resource group
- projectName String
- Name of the project
- serviceName String
- Name of the service
- properties
ConnectTo | ConnectSource Postgre Sql Sync Task Properties To | ConnectSource Sql Server Sync Task Properties To | ConnectSource Sql Server Task Properties To | ConnectTarget Azure Db For My Sql Task Properties To | ConnectTarget Azure Db For Postgre Sql Sync Task Properties To | ConnectTarget Sql Db Task Properties To | ConnectTarget Sql MISync Task Properties To | ConnectTarget Sql MITask Properties To | GetTarget Sql Sql Db Sync Task Properties Tde | GetCertificates Sql Task Properties User | GetTables Sql Sync Task Properties User | MigrateTables Sql Task Properties My | MigrateSql Azure Db For My Sql Sync Task Properties Postgre | MigrateSql Azure Db For Postgre Sql Sync Task Properties Sql | MigrateServer Sql Db Sync Task Properties Sql | MigrateServer Sql Db Task Properties Sql | MigrateServer Sql MISync Task Properties Sql | ValidateServer Sql MITask Properties Migration | ValidateInput Sql Server Sql Db Sync Task Properties Migration | ValidateInput Sql Server Sql MISync Task Properties Migration Input Sql Server Sql MITask Properties 
- Custom task properties
- taskName String
- Name of the Task
- groupName string
- Name of the resource group
- projectName string
- Name of the project
- serviceName string
- Name of the service
- properties
ConnectTo | ConnectSource Postgre Sql Sync Task Properties To | ConnectSource Sql Server Sync Task Properties To | ConnectSource Sql Server Task Properties To | ConnectTarget Azure Db For My Sql Task Properties To | ConnectTarget Azure Db For Postgre Sql Sync Task Properties To | ConnectTarget Sql Db Task Properties To | ConnectTarget Sql MISync Task Properties To | ConnectTarget Sql MITask Properties To | GetTarget Sql Sql Db Sync Task Properties Tde | GetCertificates Sql Task Properties User | GetTables Sql Sync Task Properties User | MigrateTables Sql Task Properties My | MigrateSql Azure Db For My Sql Sync Task Properties Postgre | MigrateSql Azure Db For Postgre Sql Sync Task Properties Sql | MigrateServer Sql Db Sync Task Properties Sql | MigrateServer Sql Db Task Properties Sql | MigrateServer Sql MISync Task Properties Sql | ValidateServer Sql MITask Properties Migration | ValidateInput Sql Server Sql Db Sync Task Properties Migration | ValidateInput Sql Server Sql MISync Task Properties Migration Input Sql Server Sql MITask Properties 
- Custom task properties
- taskName string
- Name of the Task
- group_name str
- Name of the resource group
- project_name str
- Name of the project
- service_name str
- Name of the service
- properties
ConnectTo | ConnectSource Postgre Sql Sync Task Properties Args To | ConnectSource Sql Server Sync Task Properties Args To | ConnectSource Sql Server Task Properties Args To | ConnectTarget Azure Db For My Sql Task Properties Args To | ConnectTarget Azure Db For Postgre Sql Sync Task Properties Args To | ConnectTarget Sql Db Task Properties Args To | ConnectTarget Sql MISync Task Properties Args To | ConnectTarget Sql MITask Properties Args To | GetTarget Sql Sql Db Sync Task Properties Args Tde | GetCertificates Sql Task Properties Args User | GetTables Sql Sync Task Properties Args User | MigrateTables Sql Task Properties Args My | MigrateSql Azure Db For My Sql Sync Task Properties Args Postgre | MigrateSql Azure Db For Postgre Sql Sync Task Properties Args Sql | MigrateServer Sql Db Sync Task Properties Args Sql | MigrateServer Sql Db Task Properties Args Sql | MigrateServer Sql MISync Task Properties Args Sql | ValidateServer Sql MITask Properties Args Migration | ValidateInput Sql Server Sql Db Sync Task Properties Args Migration | ValidateInput Sql Server Sql MISync Task Properties Args Migration Input Sql Server Sql MITask Properties Args 
- Custom task properties
- task_name str
- Name of the Task
- groupName String
- Name of the resource group
- projectName String
- Name of the project
- serviceName String
- Name of the service
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Custom task properties
- taskName String
- Name of the Task
Outputs
All input properties are implicitly available as output properties. Additionally, the Task resource produces the following output properties:
Supporting Types
AuthenticationType, AuthenticationTypeArgs    
- None
- None
- WindowsAuthentication 
- WindowsAuthentication
- SqlAuthentication 
- SqlAuthentication
- ActiveDirectory Integrated 
- ActiveDirectoryIntegrated
- ActiveDirectory Password 
- ActiveDirectoryPassword
- AuthenticationType None 
- None
- AuthenticationType Windows Authentication 
- WindowsAuthentication
- AuthenticationType Sql Authentication 
- SqlAuthentication
- AuthenticationType Active Directory Integrated 
- ActiveDirectoryIntegrated
- AuthenticationType Active Directory Password 
- ActiveDirectoryPassword
- None
- None
- WindowsAuthentication 
- WindowsAuthentication
- SqlAuthentication 
- SqlAuthentication
- ActiveDirectory Integrated 
- ActiveDirectoryIntegrated
- ActiveDirectory Password 
- ActiveDirectoryPassword
- None
- None
- WindowsAuthentication 
- WindowsAuthentication
- SqlAuthentication 
- SqlAuthentication
- ActiveDirectory Integrated 
- ActiveDirectoryIntegrated
- ActiveDirectory Password 
- ActiveDirectoryPassword
- NONE
- None
- WINDOWS_AUTHENTICATION
- WindowsAuthentication
- SQL_AUTHENTICATION
- SqlAuthentication
- ACTIVE_DIRECTORY_INTEGRATED
- ActiveDirectoryIntegrated
- ACTIVE_DIRECTORY_PASSWORD
- ActiveDirectoryPassword
- "None"
- None
- "WindowsAuthentication" 
- WindowsAuthentication
- "SqlAuthentication" 
- SqlAuthentication
- "ActiveDirectory Integrated" 
- ActiveDirectoryIntegrated
- "ActiveDirectory Password" 
- ActiveDirectoryPassword
AzureActiveDirectoryApp, AzureActiveDirectoryAppArgs        
- AppKey string
- Key used to authenticate to the Azure Active Directory Application
- ApplicationId string
- Application ID of the Azure Active Directory Application
- TenantId string
- Tenant id of the customer
- AppKey string
- Key used to authenticate to the Azure Active Directory Application
- ApplicationId string
- Application ID of the Azure Active Directory Application
- TenantId string
- Tenant id of the customer
- appKey String
- Key used to authenticate to the Azure Active Directory Application
- applicationId String
- Application ID of the Azure Active Directory Application
- tenantId String
- Tenant id of the customer
- appKey string
- Key used to authenticate to the Azure Active Directory Application
- applicationId string
- Application ID of the Azure Active Directory Application
- tenantId string
- Tenant id of the customer
- app_key str
- Key used to authenticate to the Azure Active Directory Application
- application_id str
- Application ID of the Azure Active Directory Application
- tenant_id str
- Tenant id of the customer
- appKey String
- Key used to authenticate to the Azure Active Directory Application
- applicationId String
- Application ID of the Azure Active Directory Application
- tenantId String
- Tenant id of the customer
AzureActiveDirectoryAppResponse, AzureActiveDirectoryAppResponseArgs          
- AppKey string
- Key used to authenticate to the Azure Active Directory Application
- ApplicationId string
- Application ID of the Azure Active Directory Application
- TenantId string
- Tenant id of the customer
- AppKey string
- Key used to authenticate to the Azure Active Directory Application
- ApplicationId string
- Application ID of the Azure Active Directory Application
- TenantId string
- Tenant id of the customer
- appKey String
- Key used to authenticate to the Azure Active Directory Application
- applicationId String
- Application ID of the Azure Active Directory Application
- tenantId String
- Tenant id of the customer
- appKey string
- Key used to authenticate to the Azure Active Directory Application
- applicationId string
- Application ID of the Azure Active Directory Application
- tenantId string
- Tenant id of the customer
- app_key str
- Key used to authenticate to the Azure Active Directory Application
- application_id str
- Application ID of the Azure Active Directory Application
- tenant_id str
- Tenant id of the customer
- appKey String
- Key used to authenticate to the Azure Active Directory Application
- applicationId String
- Application ID of the Azure Active Directory Application
- tenantId String
- Tenant id of the customer
BackupFileInfoResponse, BackupFileInfoResponseArgs        
- FamilySequence intNumber 
- Sequence number of the backup file in the backup set
- FileLocation string
- Location of the backup file in shared folder
- Status string
- Status of the backup file during migration
- FamilySequence intNumber 
- Sequence number of the backup file in the backup set
- FileLocation string
- Location of the backup file in shared folder
- Status string
- Status of the backup file during migration
- familySequence IntegerNumber 
- Sequence number of the backup file in the backup set
- fileLocation String
- Location of the backup file in shared folder
- status String
- Status of the backup file during migration
- familySequence numberNumber 
- Sequence number of the backup file in the backup set
- fileLocation string
- Location of the backup file in shared folder
- status string
- Status of the backup file during migration
- family_sequence_ intnumber 
- Sequence number of the backup file in the backup set
- file_location str
- Location of the backup file in shared folder
- status str
- Status of the backup file during migration
- familySequence NumberNumber 
- Sequence number of the backup file in the backup set
- fileLocation String
- Location of the backup file in shared folder
- status String
- Status of the backup file during migration
BackupMode, BackupModeArgs    
- CreateBackup 
- CreateBackup
- ExistingBackup 
- ExistingBackup
- BackupMode Create Backup 
- CreateBackup
- BackupMode Existing Backup 
- ExistingBackup
- CreateBackup 
- CreateBackup
- ExistingBackup 
- ExistingBackup
- CreateBackup 
- CreateBackup
- ExistingBackup 
- ExistingBackup
- CREATE_BACKUP
- CreateBackup
- EXISTING_BACKUP
- ExistingBackup
- "CreateBackup" 
- CreateBackup
- "ExistingBackup" 
- ExistingBackup
BackupSetInfoResponse, BackupSetInfoResponseArgs        
- BackupFinished stringDate 
- Date and time that the backup operation finished
- BackupSet stringId 
- Id for the set of backup files
- BackupStart stringDate 
- Date and time that the backup operation began
- BackupType string
- Enum of the different backup types
- DatabaseName string
- Name of the database to which the backup set belongs
- FirstLsn string
- First log sequence number of the backup file
- IsBackup boolRestored 
- Whether the backup set is restored or not
- LastLsn string
- Last log sequence number of the backup file
- LastModified stringTime 
- Last modified time of the backup file in share location
- ListOf List<Pulumi.Backup Files Azure Native. Data Migration. Inputs. Backup File Info Response> 
- List of files in the backup set
- BackupFinished stringDate 
- Date and time that the backup operation finished
- BackupSet stringId 
- Id for the set of backup files
- BackupStart stringDate 
- Date and time that the backup operation began
- BackupType string
- Enum of the different backup types
- DatabaseName string
- Name of the database to which the backup set belongs
- FirstLsn string
- First log sequence number of the backup file
- IsBackup boolRestored 
- Whether the backup set is restored or not
- LastLsn string
- Last log sequence number of the backup file
- LastModified stringTime 
- Last modified time of the backup file in share location
- ListOf []BackupBackup Files File Info Response 
- List of files in the backup set
- backupFinished StringDate 
- Date and time that the backup operation finished
- backupSet StringId 
- Id for the set of backup files
- backupStart StringDate 
- Date and time that the backup operation began
- backupType String
- Enum of the different backup types
- databaseName String
- Name of the database to which the backup set belongs
- firstLsn String
- First log sequence number of the backup file
- isBackup BooleanRestored 
- Whether the backup set is restored or not
- lastLsn String
- Last log sequence number of the backup file
- lastModified StringTime 
- Last modified time of the backup file in share location
- listOf List<BackupBackup Files File Info Response> 
- List of files in the backup set
- backupFinished stringDate 
- Date and time that the backup operation finished
- backupSet stringId 
- Id for the set of backup files
- backupStart stringDate 
- Date and time that the backup operation began
- backupType string
- Enum of the different backup types
- databaseName string
- Name of the database to which the backup set belongs
- firstLsn string
- First log sequence number of the backup file
- isBackup booleanRestored 
- Whether the backup set is restored or not
- lastLsn string
- Last log sequence number of the backup file
- lastModified stringTime 
- Last modified time of the backup file in share location
- listOf BackupBackup Files File Info Response[] 
- List of files in the backup set
- backup_finished_ strdate 
- Date and time that the backup operation finished
- backup_set_ strid 
- Id for the set of backup files
- backup_start_ strdate 
- Date and time that the backup operation began
- backup_type str
- Enum of the different backup types
- database_name str
- Name of the database to which the backup set belongs
- first_lsn str
- First log sequence number of the backup file
- is_backup_ boolrestored 
- Whether the backup set is restored or not
- last_lsn str
- Last log sequence number of the backup file
- last_modified_ strtime 
- Last modified time of the backup file in share location
- list_of_ Sequence[Backupbackup_ files File Info Response] 
- List of files in the backup set
- backupFinished StringDate 
- Date and time that the backup operation finished
- backupSet StringId 
- Id for the set of backup files
- backupStart StringDate 
- Date and time that the backup operation began
- backupType String
- Enum of the different backup types
- databaseName String
- Name of the database to which the backup set belongs
- firstLsn String
- First log sequence number of the backup file
- isBackup BooleanRestored 
- Whether the backup set is restored or not
- lastLsn String
- Last log sequence number of the backup file
- lastModified StringTime 
- Last modified time of the backup file in share location
- listOf List<Property Map>Backup Files 
- List of files in the backup set
BlobShare, BlobShareArgs    
- SasUri string
- SAS URI of Azure Storage Account Container.
- SasUri string
- SAS URI of Azure Storage Account Container.
- sasUri String
- SAS URI of Azure Storage Account Container.
- sasUri string
- SAS URI of Azure Storage Account Container.
- sas_uri str
- SAS URI of Azure Storage Account Container.
- sasUri String
- SAS URI of Azure Storage Account Container.
BlobShareResponse, BlobShareResponseArgs      
- SasUri string
- SAS URI of Azure Storage Account Container.
- SasUri string
- SAS URI of Azure Storage Account Container.
- sasUri String
- SAS URI of Azure Storage Account Container.
- sasUri string
- SAS URI of Azure Storage Account Container.
- sas_uri str
- SAS URI of Azure Storage Account Container.
- sasUri String
- SAS URI of Azure Storage Account Container.
ConnectToSourcePostgreSqlSyncTaskInput, ConnectToSourcePostgreSqlSyncTaskInputArgs                
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info 
- Connection information for source PostgreSQL server
- SourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL server
- source_connection_ Postgreinfo Sql Connection Info 
- Connection information for source PostgreSQL server
- sourceConnection Property MapInfo 
- Connection information for source PostgreSQL server
ConnectToSourcePostgreSqlSyncTaskInputResponse, ConnectToSourcePostgreSqlSyncTaskInputResponseArgs                  
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info Response 
- Connection information for source PostgreSQL server
- SourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- source_connection_ Postgreinfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- sourceConnection Property MapInfo 
- Connection information for source PostgreSQL server
ConnectToSourcePostgreSqlSyncTaskOutputResponse, ConnectToSourcePostgreSqlSyncTaskOutputResponseArgs                  
- Databases List<string>
- List of databases on source server
- Id string
- Result identifier
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Version of the source server
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors associated with the task
- Databases []string
- List of databases on source server
- Id string
- Result identifier
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Version of the source server
- ValidationErrors []ReportableException Response 
- Validation errors associated with the task
- databases List<String>
- List of databases on source server
- id String
- Result identifier
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Version of the source server
- validationErrors List<ReportableException Response> 
- Validation errors associated with the task
- databases string[]
- List of databases on source server
- id string
- Result identifier
- sourceServer stringBrand Version 
- Source server brand version
- sourceServer stringVersion 
- Version of the source server
- validationErrors ReportableException Response[] 
- Validation errors associated with the task
- databases Sequence[str]
- List of databases on source server
- id str
- Result identifier
- source_server_ strbrand_ version 
- Source server brand version
- source_server_ strversion 
- Version of the source server
- validation_errors Sequence[ReportableException Response] 
- Validation errors associated with the task
- databases List<String>
- List of databases on source server
- id String
- Result identifier
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Version of the source server
- validationErrors List<Property Map>
- Validation errors associated with the task
ConnectToSourcePostgreSqlSyncTaskProperties, ConnectToSourcePostgreSqlSyncTaskPropertiesArgs                
- Input
ConnectTo Source Postgre Sql Sync Task Input 
- Task input
- input
ConnectTo Source Postgre Sql Sync Task Input 
- Task input
- input
ConnectTo Source Postgre Sql Sync Task Input 
- Task input
- input
ConnectTo Source Postgre Sql Sync Task Input 
- Task input
- input Property Map
- Task input
ConnectToSourcePostgreSqlSyncTaskPropertiesResponse, ConnectToSourcePostgreSqlSyncTaskPropertiesResponseArgs                  
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Connect To Source Postgre Sql Sync Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Source Postgre Sql Sync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ConnectTo Source Postgre Sql Sync Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Source Postgre Sql Sync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ConnectTo Source Postgre Sql Sync Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Postgre Sql Sync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ConnectTo Source Postgre Sql Sync Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Postgre Sql Sync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ConnectTo Source Postgre Sql Sync Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Postgre Sql Sync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToSourceSqlServerSyncTaskProperties, ConnectToSourceSqlServerSyncTaskPropertiesArgs                
- Input
ConnectTo Source Sql Server Task Input 
- Task input
- input
ConnectTo Source Sql Server Task Input 
- Task input
- input
ConnectTo Source Sql Server Task Input 
- Task input
- input
ConnectTo Source Sql Server Task Input 
- Task input
- input Property Map
- Task input
ConnectToSourceSqlServerSyncTaskPropertiesResponse, ConnectToSourceSqlServerSyncTaskPropertiesResponseArgs                  
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Source Sql Server Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(ConnectTo Source Sql Server Task Output Agent Job Level Response | Connect To Source Sql Server Task Output Database Level Response | Connect To Source Sql Server Task Output Login Level Response | Connect To Source Sql Server Task Output Task Level Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[ConnectTo Source Sql Server Task Output Agent Job Level Response, Connect To Source Sql Server Task Output Database Level Response, Connect To Source Sql Server Task Output Login Level Response, Connect To Source Sql Server Task Output Task Level Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToSourceSqlServerTaskInput, ConnectToSourceSqlServerTaskInputArgs              
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for Source SQL Server
- CheckPermissions string | Pulumi.Group Azure Native. Data Migration. Server Level Permissions Group 
- Permission group for validations
- CollectAgent boolJobs 
- Flag for whether to collect agent jobs from source server.
- CollectLogins bool
- Flag for whether to collect logins from source server.
- SourceConnection SqlInfo Connection Info 
- Connection information for Source SQL Server
- CheckPermissions string | ServerGroup Level Permissions Group 
- Permission group for validations
- CollectAgent boolJobs 
- Flag for whether to collect agent jobs from source server.
- CollectLogins bool
- Flag for whether to collect logins from source server.
- sourceConnection SqlInfo Connection Info 
- Connection information for Source SQL Server
- checkPermissions String | ServerGroup Level Permissions Group 
- Permission group for validations
- collectAgent BooleanJobs 
- Flag for whether to collect agent jobs from source server.
- collectLogins Boolean
- Flag for whether to collect logins from source server.
- sourceConnection SqlInfo Connection Info 
- Connection information for Source SQL Server
- checkPermissions string | ServerGroup Level Permissions Group 
- Permission group for validations
- collectAgent booleanJobs 
- Flag for whether to collect agent jobs from source server.
- collectLogins boolean
- Flag for whether to collect logins from source server.
- source_connection_ Sqlinfo Connection Info 
- Connection information for Source SQL Server
- check_permissions_ str | Servergroup Level Permissions Group 
- Permission group for validations
- collect_agent_ booljobs 
- Flag for whether to collect agent jobs from source server.
- collect_logins bool
- Flag for whether to collect logins from source server.
- sourceConnection Property MapInfo 
- Connection information for Source SQL Server
- checkPermissions String | "Default" | "MigrationGroup From Sql Server To Azure DB" | "Migration From Sql Server To Azure MI" | "Migration From My SQLTo Azure DBFor My SQL" 
- Permission group for validations
- collectAgent BooleanJobs 
- Flag for whether to collect agent jobs from source server.
- collectLogins Boolean
- Flag for whether to collect logins from source server.
ConnectToSourceSqlServerTaskInputResponse, ConnectToSourceSqlServerTaskInputResponseArgs                
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for Source SQL Server
- CheckPermissions stringGroup 
- Permission group for validations
- CollectAgent boolJobs 
- Flag for whether to collect agent jobs from source server.
- CollectLogins bool
- Flag for whether to collect logins from source server.
- SourceConnection SqlInfo Connection Info Response 
- Connection information for Source SQL Server
- CheckPermissions stringGroup 
- Permission group for validations
- CollectAgent boolJobs 
- Flag for whether to collect agent jobs from source server.
- CollectLogins bool
- Flag for whether to collect logins from source server.
- sourceConnection SqlInfo Connection Info Response 
- Connection information for Source SQL Server
- checkPermissions StringGroup 
- Permission group for validations
- collectAgent BooleanJobs 
- Flag for whether to collect agent jobs from source server.
- collectLogins Boolean
- Flag for whether to collect logins from source server.
- sourceConnection SqlInfo Connection Info Response 
- Connection information for Source SQL Server
- checkPermissions stringGroup 
- Permission group for validations
- collectAgent booleanJobs 
- Flag for whether to collect agent jobs from source server.
- collectLogins boolean
- Flag for whether to collect logins from source server.
- source_connection_ Sqlinfo Connection Info Response 
- Connection information for Source SQL Server
- check_permissions_ strgroup 
- Permission group for validations
- collect_agent_ booljobs 
- Flag for whether to collect agent jobs from source server.
- collect_logins bool
- Flag for whether to collect logins from source server.
- sourceConnection Property MapInfo 
- Connection information for Source SQL Server
- checkPermissions StringGroup 
- Permission group for validations
- collectAgent BooleanJobs 
- Flag for whether to collect agent jobs from source server.
- collectLogins Boolean
- Flag for whether to collect logins from source server.
ConnectToSourceSqlServerTaskOutputAgentJobLevelResponse, ConnectToSourceSqlServerTaskOutputAgentJobLevelResponseArgs                      
- Id string
- Result identifier
- IsEnabled bool
- The state of the original AgentJob.
- JobCategory string
- The type of AgentJob.
- JobOwner string
- The owner of the AgentJob
- LastExecuted stringOn 
- UTC Date and time when the AgentJob was last executed.
- MigrationEligibility Pulumi.Azure Native. Data Migration. Inputs. Migration Eligibility Info Response 
- Information about eligibility of agent job for migration.
- Name string
- AgentJob name
- Id string
- Result identifier
- IsEnabled bool
- The state of the original AgentJob.
- JobCategory string
- The type of AgentJob.
- JobOwner string
- The owner of the AgentJob
- LastExecuted stringOn 
- UTC Date and time when the AgentJob was last executed.
- MigrationEligibility MigrationEligibility Info Response 
- Information about eligibility of agent job for migration.
- Name string
- AgentJob name
- id String
- Result identifier
- isEnabled Boolean
- The state of the original AgentJob.
- jobCategory String
- The type of AgentJob.
- jobOwner String
- The owner of the AgentJob
- lastExecuted StringOn 
- UTC Date and time when the AgentJob was last executed.
- migrationEligibility MigrationEligibility Info Response 
- Information about eligibility of agent job for migration.
- name String
- AgentJob name
- id string
- Result identifier
- isEnabled boolean
- The state of the original AgentJob.
- jobCategory string
- The type of AgentJob.
- jobOwner string
- The owner of the AgentJob
- lastExecuted stringOn 
- UTC Date and time when the AgentJob was last executed.
- migrationEligibility MigrationEligibility Info Response 
- Information about eligibility of agent job for migration.
- name string
- AgentJob name
- id str
- Result identifier
- is_enabled bool
- The state of the original AgentJob.
- job_category str
- The type of AgentJob.
- job_owner str
- The owner of the AgentJob
- last_executed_ stron 
- UTC Date and time when the AgentJob was last executed.
- migration_eligibility MigrationEligibility Info Response 
- Information about eligibility of agent job for migration.
- name str
- AgentJob name
- id String
- Result identifier
- isEnabled Boolean
- The state of the original AgentJob.
- jobCategory String
- The type of AgentJob.
- jobOwner String
- The owner of the AgentJob
- lastExecuted StringOn 
- UTC Date and time when the AgentJob was last executed.
- migrationEligibility Property Map
- Information about eligibility of agent job for migration.
- name String
- AgentJob name
ConnectToSourceSqlServerTaskOutputDatabaseLevelResponse, ConnectToSourceSqlServerTaskOutputDatabaseLevelResponseArgs                    
- CompatibilityLevel string
- SQL Server compatibility level of database
- DatabaseFiles List<Pulumi.Azure Native. Data Migration. Inputs. Database File Info Response> 
- The list of database files
- DatabaseState string
- State of the database
- Id string
- Result identifier
- Name string
- Database name
- SizeMB double
- Size of the file in megabytes
- CompatibilityLevel string
- SQL Server compatibility level of database
- DatabaseFiles []DatabaseFile Info Response 
- The list of database files
- DatabaseState string
- State of the database
- Id string
- Result identifier
- Name string
- Database name
- SizeMB float64
- Size of the file in megabytes
- compatibilityLevel String
- SQL Server compatibility level of database
- databaseFiles List<DatabaseFile Info Response> 
- The list of database files
- databaseState String
- State of the database
- id String
- Result identifier
- name String
- Database name
- sizeMB Double
- Size of the file in megabytes
- compatibilityLevel string
- SQL Server compatibility level of database
- databaseFiles DatabaseFile Info Response[] 
- The list of database files
- databaseState string
- State of the database
- id string
- Result identifier
- name string
- Database name
- sizeMB number
- Size of the file in megabytes
- compatibility_level str
- SQL Server compatibility level of database
- database_files Sequence[DatabaseFile Info Response] 
- The list of database files
- database_state str
- State of the database
- id str
- Result identifier
- name str
- Database name
- size_mb float
- Size of the file in megabytes
- compatibilityLevel String
- SQL Server compatibility level of database
- databaseFiles List<Property Map>
- The list of database files
- databaseState String
- State of the database
- id String
- Result identifier
- name String
- Database name
- sizeMB Number
- Size of the file in megabytes
ConnectToSourceSqlServerTaskOutputLoginLevelResponse, ConnectToSourceSqlServerTaskOutputLoginLevelResponseArgs                    
- DefaultDatabase string
- The default database for the login.
- Id string
- Result identifier
- IsEnabled bool
- The state of the login.
- LoginType string
- The type of login.
- MigrationEligibility Pulumi.Azure Native. Data Migration. Inputs. Migration Eligibility Info Response 
- Information about eligibility of login for migration.
- Name string
- Login name.
- DefaultDatabase string
- The default database for the login.
- Id string
- Result identifier
- IsEnabled bool
- The state of the login.
- LoginType string
- The type of login.
- MigrationEligibility MigrationEligibility Info Response 
- Information about eligibility of login for migration.
- Name string
- Login name.
- defaultDatabase String
- The default database for the login.
- id String
- Result identifier
- isEnabled Boolean
- The state of the login.
- loginType String
- The type of login.
- migrationEligibility MigrationEligibility Info Response 
- Information about eligibility of login for migration.
- name String
- Login name.
- defaultDatabase string
- The default database for the login.
- id string
- Result identifier
- isEnabled boolean
- The state of the login.
- loginType string
- The type of login.
- migrationEligibility MigrationEligibility Info Response 
- Information about eligibility of login for migration.
- name string
- Login name.
- default_database str
- The default database for the login.
- id str
- Result identifier
- is_enabled bool
- The state of the login.
- login_type str
- The type of login.
- migration_eligibility MigrationEligibility Info Response 
- Information about eligibility of login for migration.
- name str
- Login name.
- defaultDatabase String
- The default database for the login.
- id String
- Result identifier
- isEnabled Boolean
- The state of the login.
- loginType String
- The type of login.
- migrationEligibility Property Map
- Information about eligibility of login for migration.
- name String
- Login name.
ConnectToSourceSqlServerTaskOutputTaskLevelResponse, ConnectToSourceSqlServerTaskOutputTaskLevelResponseArgs                    
- AgentJobs Dictionary<string, string>
- Source agent jobs as a map from agent job name to id.
- Databases Dictionary<string, string>
- Source databases as a map from database name to database id
- Id string
- Result identifier
- Logins Dictionary<string, string>
- Source logins as a map from login name to login id.
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Source server version
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors
- AgentJobs map[string]string
- Source agent jobs as a map from agent job name to id.
- Databases map[string]string
- Source databases as a map from database name to database id
- Id string
- Result identifier
- Logins map[string]string
- Source logins as a map from login name to login id.
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Source server version
- ValidationErrors []ReportableException Response 
- Validation errors
- agentJobs Map<String,String>
- Source agent jobs as a map from agent job name to id.
- databases Map<String,String>
- Source databases as a map from database name to database id
- id String
- Result identifier
- logins Map<String,String>
- Source logins as a map from login name to login id.
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Source server version
- validationErrors List<ReportableException Response> 
- Validation errors
- agentJobs {[key: string]: string}
- Source agent jobs as a map from agent job name to id.
- databases {[key: string]: string}
- Source databases as a map from database name to database id
- id string
- Result identifier
- logins {[key: string]: string}
- Source logins as a map from login name to login id.
- sourceServer stringBrand Version 
- Source server brand version
- sourceServer stringVersion 
- Source server version
- validationErrors ReportableException Response[] 
- Validation errors
- agent_jobs Mapping[str, str]
- Source agent jobs as a map from agent job name to id.
- databases Mapping[str, str]
- Source databases as a map from database name to database id
- id str
- Result identifier
- logins Mapping[str, str]
- Source logins as a map from login name to login id.
- source_server_ strbrand_ version 
- Source server brand version
- source_server_ strversion 
- Source server version
- validation_errors Sequence[ReportableException Response] 
- Validation errors
- agentJobs Map<String>
- Source agent jobs as a map from agent job name to id.
- databases Map<String>
- Source databases as a map from database name to database id
- id String
- Result identifier
- logins Map<String>
- Source logins as a map from login name to login id.
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Source server version
- validationErrors List<Property Map>
- Validation errors
ConnectToSourceSqlServerTaskProperties, ConnectToSourceSqlServerTaskPropertiesArgs              
- Input
ConnectTo Source Sql Server Task Input 
- Task input
- input
ConnectTo Source Sql Server Task Input 
- Task input
- input
ConnectTo Source Sql Server Task Input 
- Task input
- input
ConnectTo Source Sql Server Task Input 
- Task input
- input Property Map
- Task input
ConnectToSourceSqlServerTaskPropertiesResponse, ConnectToSourceSqlServerTaskPropertiesResponseArgs                
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Source Sql Server Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(ConnectTo Source Sql Server Task Output Agent Job Level Response | Connect To Source Sql Server Task Output Database Level Response | Connect To Source Sql Server Task Output Login Level Response | Connect To Source Sql Server Task Output Task Level Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[ConnectTo Source Sql Server Task Output Agent Job Level Response, Connect To Source Sql Server Task Output Database Level Response, Connect To Source Sql Server Task Output Login Level Response, Connect To Source Sql Server Task Output Task Level Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Source Sql Server Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToTargetAzureDbForMySqlTaskInput, ConnectToTargetAzureDbForMySqlTaskInputArgs                    
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info 
- Connection information for source MySQL server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info 
- Connection information for target Azure Database for MySQL server
- SourceConnection MyInfo Sql Connection Info 
- Connection information for source MySQL server
- TargetConnection MyInfo Sql Connection Info 
- Connection information for target Azure Database for MySQL server
- sourceConnection MyInfo Sql Connection Info 
- Connection information for source MySQL server
- targetConnection MyInfo Sql Connection Info 
- Connection information for target Azure Database for MySQL server
- sourceConnection MyInfo Sql Connection Info 
- Connection information for source MySQL server
- targetConnection MyInfo Sql Connection Info 
- Connection information for target Azure Database for MySQL server
- source_connection_ Myinfo Sql Connection Info 
- Connection information for source MySQL server
- target_connection_ Myinfo Sql Connection Info 
- Connection information for target Azure Database for MySQL server
- sourceConnection Property MapInfo 
- Connection information for source MySQL server
- targetConnection Property MapInfo 
- Connection information for target Azure Database for MySQL server
ConnectToTargetAzureDbForMySqlTaskInputResponse, ConnectToTargetAzureDbForMySqlTaskInputResponseArgs                      
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info Response 
- Connection information for source MySQL server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info Response 
- Connection information for target Azure Database for MySQL server
- SourceConnection MyInfo Sql Connection Info Response 
- Connection information for source MySQL server
- TargetConnection MyInfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL server
- sourceConnection MyInfo Sql Connection Info Response 
- Connection information for source MySQL server
- targetConnection MyInfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL server
- sourceConnection MyInfo Sql Connection Info Response 
- Connection information for source MySQL server
- targetConnection MyInfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL server
- source_connection_ Myinfo Sql Connection Info Response 
- Connection information for source MySQL server
- target_connection_ Myinfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL server
- sourceConnection Property MapInfo 
- Connection information for source MySQL server
- targetConnection Property MapInfo 
- Connection information for target Azure Database for MySQL server
ConnectToTargetAzureDbForMySqlTaskOutputResponse, ConnectToTargetAzureDbForMySqlTaskOutputResponseArgs                      
- Databases List<string>
- List of databases on target server
- Id string
- Result identifier
- ServerVersion string
- Version of the target server
- TargetServer stringBrand Version 
- Target server brand version
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors associated with the task
- Databases []string
- List of databases on target server
- Id string
- Result identifier
- ServerVersion string
- Version of the target server
- TargetServer stringBrand Version 
- Target server brand version
- ValidationErrors []ReportableException Response 
- Validation errors associated with the task
- databases List<String>
- List of databases on target server
- id String
- Result identifier
- serverVersion String
- Version of the target server
- targetServer StringBrand Version 
- Target server brand version
- validationErrors List<ReportableException Response> 
- Validation errors associated with the task
- databases string[]
- List of databases on target server
- id string
- Result identifier
- serverVersion string
- Version of the target server
- targetServer stringBrand Version 
- Target server brand version
- validationErrors ReportableException Response[] 
- Validation errors associated with the task
- databases Sequence[str]
- List of databases on target server
- id str
- Result identifier
- server_version str
- Version of the target server
- target_server_ strbrand_ version 
- Target server brand version
- validation_errors Sequence[ReportableException Response] 
- Validation errors associated with the task
- databases List<String>
- List of databases on target server
- id String
- Result identifier
- serverVersion String
- Version of the target server
- targetServer StringBrand Version 
- Target server brand version
- validationErrors List<Property Map>
- Validation errors associated with the task
ConnectToTargetAzureDbForMySqlTaskProperties, ConnectToTargetAzureDbForMySqlTaskPropertiesArgs                    
- Input
ConnectTo Target Azure Db For My Sql Task Input 
- Task input
- input
ConnectTo Target Azure Db For My Sql Task Input 
- Task input
- input
ConnectTo Target Azure Db For My Sql Task Input 
- Task input
- input
ConnectTo Target Azure Db For My Sql Task Input 
- Task input
- input Property Map
- Task input
ConnectToTargetAzureDbForMySqlTaskPropertiesResponse, ConnectToTargetAzureDbForMySqlTaskPropertiesResponseArgs                      
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Azure Db For My Sql Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Azure Db For My Sql Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ConnectTo Target Azure Db For My Sql Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Target Azure Db For My Sql Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ConnectTo Target Azure Db For My Sql Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Azure Db For My Sql Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ConnectTo Target Azure Db For My Sql Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Azure Db For My Sql Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ConnectTo Target Azure Db For My Sql Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Azure Db For My Sql Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToTargetAzureDbForPostgreSqlSyncTaskInput, ConnectToTargetAzureDbForPostgreSqlSyncTaskInputArgs                      
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info 
- Connection information for source PostgreSQL server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL server
- SourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL server
- TargetConnection PostgreInfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL server
- targetConnection PostgreInfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL server
- targetConnection PostgreInfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL server
- source_connection_ Postgreinfo Sql Connection Info 
- Connection information for source PostgreSQL server
- target_connection_ Postgreinfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL server
- sourceConnection Property MapInfo 
- Connection information for source PostgreSQL server
- targetConnection Property MapInfo 
- Connection information for target Azure Database for PostgreSQL server
ConnectToTargetAzureDbForPostgreSqlSyncTaskInputResponse, ConnectToTargetAzureDbForPostgreSqlSyncTaskInputResponseArgs                        
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info Response 
- Connection information for source PostgreSQL server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL server
- SourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- TargetConnection PostgreInfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- targetConnection PostgreInfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL server
- sourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- targetConnection PostgreInfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL server
- source_connection_ Postgreinfo Sql Connection Info Response 
- Connection information for source PostgreSQL server
- target_connection_ Postgreinfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL server
- sourceConnection Property MapInfo 
- Connection information for source PostgreSQL server
- targetConnection Property MapInfo 
- Connection information for target Azure Database for PostgreSQL server
ConnectToTargetAzureDbForPostgreSqlSyncTaskOutputResponse, ConnectToTargetAzureDbForPostgreSqlSyncTaskOutputResponseArgs                        
- Databases List<string>
- List of databases on target server
- Id string
- Result identifier
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Version of the target server
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors associated with the task
- Databases []string
- List of databases on target server
- Id string
- Result identifier
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Version of the target server
- ValidationErrors []ReportableException Response 
- Validation errors associated with the task
- databases List<String>
- List of databases on target server
- id String
- Result identifier
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Version of the target server
- validationErrors List<ReportableException Response> 
- Validation errors associated with the task
- databases string[]
- List of databases on target server
- id string
- Result identifier
- targetServer stringBrand Version 
- Target server brand version
- targetServer stringVersion 
- Version of the target server
- validationErrors ReportableException Response[] 
- Validation errors associated with the task
- databases Sequence[str]
- List of databases on target server
- id str
- Result identifier
- target_server_ strbrand_ version 
- Target server brand version
- target_server_ strversion 
- Version of the target server
- validation_errors Sequence[ReportableException Response] 
- Validation errors associated with the task
- databases List<String>
- List of databases on target server
- id String
- Result identifier
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Version of the target server
- validationErrors List<Property Map>
- Validation errors associated with the task
ConnectToTargetAzureDbForPostgreSqlSyncTaskProperties, ConnectToTargetAzureDbForPostgreSqlSyncTaskPropertiesArgs                      
- input Property Map
- Task input
ConnectToTargetAzureDbForPostgreSqlSyncTaskPropertiesResponse, ConnectToTargetAzureDbForPostgreSqlSyncTaskPropertiesResponseArgs                        
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Azure Db For Postgre Sql Sync Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ConnectTo Target Azure Db For Postgre Sql Sync Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Target Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ConnectTo Target Azure Db For Postgre Sql Sync Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ConnectTo Target Azure Db For Postgre Sql Sync Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ConnectTo Target Azure Db For Postgre Sql Sync Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToTargetSqlDbTaskInput, ConnectToTargetSqlDbTaskInputArgs              
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for target SQL DB
- TargetConnection SqlInfo Connection Info 
- Connection information for target SQL DB
- targetConnection SqlInfo Connection Info 
- Connection information for target SQL DB
- targetConnection SqlInfo Connection Info 
- Connection information for target SQL DB
- target_connection_ Sqlinfo Connection Info 
- Connection information for target SQL DB
- targetConnection Property MapInfo 
- Connection information for target SQL DB
ConnectToTargetSqlDbTaskInputResponse, ConnectToTargetSqlDbTaskInputResponseArgs                
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for target SQL DB
- TargetConnection SqlInfo Connection Info Response 
- Connection information for target SQL DB
- targetConnection SqlInfo Connection Info Response 
- Connection information for target SQL DB
- targetConnection SqlInfo Connection Info Response 
- Connection information for target SQL DB
- target_connection_ Sqlinfo Connection Info Response 
- Connection information for target SQL DB
- targetConnection Property MapInfo 
- Connection information for target SQL DB
ConnectToTargetSqlDbTaskOutputResponse, ConnectToTargetSqlDbTaskOutputResponseArgs                
- Databases Dictionary<string, string>
- Source databases as a map from database name to database id
- Id string
- Result identifier
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Version of the target server
- Databases map[string]string
- Source databases as a map from database name to database id
- Id string
- Result identifier
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Version of the target server
- databases Map<String,String>
- Source databases as a map from database name to database id
- id String
- Result identifier
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Version of the target server
- databases {[key: string]: string}
- Source databases as a map from database name to database id
- id string
- Result identifier
- targetServer stringBrand Version 
- Target server brand version
- targetServer stringVersion 
- Version of the target server
- databases Mapping[str, str]
- Source databases as a map from database name to database id
- id str
- Result identifier
- target_server_ strbrand_ version 
- Target server brand version
- target_server_ strversion 
- Version of the target server
- databases Map<String>
- Source databases as a map from database name to database id
- id String
- Result identifier
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Version of the target server
ConnectToTargetSqlDbTaskProperties, ConnectToTargetSqlDbTaskPropertiesArgs              
- Input
ConnectTo Target Sql Db Task Input 
- Task input
- input
ConnectTo Target Sql Db Task Input 
- Task input
- input
ConnectTo Target Sql Db Task Input 
- Task input
- input
ConnectTo Target Sql Db Task Input 
- Task input
- input Property Map
- Task input
ConnectToTargetSqlDbTaskPropertiesResponse, ConnectToTargetSqlDbTaskPropertiesResponseArgs                
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql Db Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql Db Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ConnectTo Target Sql Db Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Target Sql Db Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ConnectTo Target Sql Db Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql Db Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ConnectTo Target Sql Db Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql Db Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ConnectTo Target Sql Db Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql Db Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToTargetSqlMISyncTaskInput, ConnectToTargetSqlMISyncTaskInputArgs              
- AzureApp Pulumi.Azure Native. Data Migration. Inputs. Azure Active Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Mi Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- AzureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- TargetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- azureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- targetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- azureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- targetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- azure_app AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- target_connection_ Miinfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- azureApp Property Map
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- targetConnection Property MapInfo 
- Connection information for Azure SQL Database Managed Instance
ConnectToTargetSqlMISyncTaskInputResponse, ConnectToTargetSqlMISyncTaskInputResponseArgs                
- AzureApp Pulumi.Azure Native. Data Migration. Inputs. Azure Active Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Mi Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- AzureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- TargetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- azureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- targetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- azureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- targetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- azure_app AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- target_connection_ Miinfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- azureApp Property Map
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- targetConnection Property MapInfo 
- Connection information for Azure SQL Database Managed Instance
ConnectToTargetSqlMISyncTaskOutputResponse, ConnectToTargetSqlMISyncTaskOutputResponseArgs                
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- ValidationErrors []ReportableException Response 
- Validation errors
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
- validationErrors List<ReportableException Response> 
- Validation errors
- targetServer stringBrand Version 
- Target server brand version
- targetServer stringVersion 
- Target server version
- validationErrors ReportableException Response[] 
- Validation errors
- target_server_ strbrand_ version 
- Target server brand version
- target_server_ strversion 
- Target server version
- validation_errors Sequence[ReportableException Response] 
- Validation errors
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
- validationErrors List<Property Map>
- Validation errors
ConnectToTargetSqlMISyncTaskProperties, ConnectToTargetSqlMISyncTaskPropertiesArgs              
- Input
ConnectTo Target Sql MISync Task Input 
- Task input
- input
ConnectTo Target Sql MISync Task Input 
- Task input
- input
ConnectTo Target Sql MISync Task Input 
- Task input
- input
ConnectTo Target Sql MISync Task Input 
- Task input
- input Property Map
- Task input
ConnectToTargetSqlMISyncTaskPropertiesResponse, ConnectToTargetSqlMISyncTaskPropertiesResponseArgs                
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql MISync Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql MISync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ConnectTo Target Sql MISync Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Target Sql MISync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ConnectTo Target Sql MISync Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql MISync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ConnectTo Target Sql MISync Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql MISync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ConnectTo Target Sql MISync Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql MISync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToTargetSqlMITaskInput, ConnectToTargetSqlMITaskInputArgs            
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for target SQL Server
- TargetConnection SqlInfo Connection Info 
- Connection information for target SQL Server
- targetConnection SqlInfo Connection Info 
- Connection information for target SQL Server
- targetConnection SqlInfo Connection Info 
- Connection information for target SQL Server
- target_connection_ Sqlinfo Connection Info 
- Connection information for target SQL Server
- targetConnection Property MapInfo 
- Connection information for target SQL Server
ConnectToTargetSqlMITaskInputResponse, ConnectToTargetSqlMITaskInputResponseArgs              
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for target SQL Server
- TargetConnection SqlInfo Connection Info Response 
- Connection information for target SQL Server
- targetConnection SqlInfo Connection Info Response 
- Connection information for target SQL Server
- targetConnection SqlInfo Connection Info Response 
- Connection information for target SQL Server
- target_connection_ Sqlinfo Connection Info Response 
- Connection information for target SQL Server
- targetConnection Property MapInfo 
- Connection information for target SQL Server
ConnectToTargetSqlMITaskOutputResponse, ConnectToTargetSqlMITaskOutputResponseArgs              
- AgentJobs List<string>
- List of agent jobs on the target server.
- Id string
- Result identifier
- Logins List<string>
- List of logins on the target server.
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors
- AgentJobs []string
- List of agent jobs on the target server.
- Id string
- Result identifier
- Logins []string
- List of logins on the target server.
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- ValidationErrors []ReportableException Response 
- Validation errors
- agentJobs List<String>
- List of agent jobs on the target server.
- id String
- Result identifier
- logins List<String>
- List of logins on the target server.
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
- validationErrors List<ReportableException Response> 
- Validation errors
- agentJobs string[]
- List of agent jobs on the target server.
- id string
- Result identifier
- logins string[]
- List of logins on the target server.
- targetServer stringBrand Version 
- Target server brand version
- targetServer stringVersion 
- Target server version
- validationErrors ReportableException Response[] 
- Validation errors
- agent_jobs Sequence[str]
- List of agent jobs on the target server.
- id str
- Result identifier
- logins Sequence[str]
- List of logins on the target server.
- target_server_ strbrand_ version 
- Target server brand version
- target_server_ strversion 
- Target server version
- validation_errors Sequence[ReportableException Response] 
- Validation errors
- agentJobs List<String>
- List of agent jobs on the target server.
- id String
- Result identifier
- logins List<String>
- List of logins on the target server.
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
- validationErrors List<Property Map>
- Validation errors
ConnectToTargetSqlMITaskProperties, ConnectToTargetSqlMITaskPropertiesArgs            
- Input
ConnectTo Target Sql MITask Input 
- Task input
- input
ConnectTo Target Sql MITask Input 
- Task input
- input
ConnectTo Target Sql MITask Input 
- Task input
- input
ConnectTo Target Sql MITask Input 
- Task input
- input Property Map
- Task input
ConnectToTargetSqlMITaskPropertiesResponse, ConnectToTargetSqlMITaskPropertiesResponseArgs              
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql MITask Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql MITask Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ConnectTo Target Sql MITask Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Target Sql MITask Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ConnectTo Target Sql MITask Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql MITask Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ConnectTo Target Sql MITask Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql MITask Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ConnectTo Target Sql MITask Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql MITask Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ConnectToTargetSqlSqlDbSyncTaskInput, ConnectToTargetSqlSqlDbSyncTaskInputArgs                  
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for source SQL Server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for target SQL DB
- SourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- TargetConnection SqlInfo Connection Info 
- Connection information for target SQL DB
- sourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- targetConnection SqlInfo Connection Info 
- Connection information for target SQL DB
- sourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- targetConnection SqlInfo Connection Info 
- Connection information for target SQL DB
- source_connection_ Sqlinfo Connection Info 
- Connection information for source SQL Server
- target_connection_ Sqlinfo Connection Info 
- Connection information for target SQL DB
- sourceConnection Property MapInfo 
- Connection information for source SQL Server
- targetConnection Property MapInfo 
- Connection information for target SQL DB
ConnectToTargetSqlSqlDbSyncTaskInputResponse, ConnectToTargetSqlSqlDbSyncTaskInputResponseArgs                    
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for source SQL Server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for target SQL DB
- SourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- TargetConnection SqlInfo Connection Info Response 
- Connection information for target SQL DB
- sourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- targetConnection SqlInfo Connection Info Response 
- Connection information for target SQL DB
- sourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- targetConnection SqlInfo Connection Info Response 
- Connection information for target SQL DB
- source_connection_ Sqlinfo Connection Info Response 
- Connection information for source SQL Server
- target_connection_ Sqlinfo Connection Info Response 
- Connection information for target SQL DB
- sourceConnection Property MapInfo 
- Connection information for source SQL Server
- targetConnection Property MapInfo 
- Connection information for target SQL DB
ConnectToTargetSqlSqlDbSyncTaskProperties, ConnectToTargetSqlSqlDbSyncTaskPropertiesArgs                  
- Input
ConnectTo Target Sql Sql Db Sync Task Input 
- Task input
- input
ConnectTo Target Sql Sql Db Sync Task Input 
- Task input
- input
ConnectTo Target Sql Sql Db Sync Task Input 
- Task input
- input
ConnectTo Target Sql Sql Db Sync Task Input 
- Task input
- input Property Map
- Task input
ConnectToTargetSqlSqlDbSyncTaskPropertiesResponse, ConnectToTargetSqlSqlDbSyncTaskPropertiesResponseArgs                    
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql Db Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Connect To Target Sql Sql Db Sync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ConnectTo Target Sql Db Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ConnectTo Target Sql Sql Db Sync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ConnectTo Target Sql Db Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql Sql Db Sync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ConnectTo Target Sql Db Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql Sql Db Sync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ConnectTo Target Sql Db Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ConnectTo Target Sql Sql Db Sync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
DataIntegrityValidationResultResponse, DataIntegrityValidationResultResponseArgs          
- FailedObjects Dictionary<string, string>
- List of failed table names of source and target pair
- ValidationErrors Pulumi.Azure Native. Data Migration. Inputs. Validation Error Response 
- List of errors that happened while performing data integrity validation
- FailedObjects map[string]string
- List of failed table names of source and target pair
- ValidationErrors ValidationError Response 
- List of errors that happened while performing data integrity validation
- failedObjects Map<String,String>
- List of failed table names of source and target pair
- validationErrors ValidationError Response 
- List of errors that happened while performing data integrity validation
- failedObjects {[key: string]: string}
- List of failed table names of source and target pair
- validationErrors ValidationError Response 
- List of errors that happened while performing data integrity validation
- failed_objects Mapping[str, str]
- List of failed table names of source and target pair
- validation_errors ValidationError Response 
- List of errors that happened while performing data integrity validation
- failedObjects Map<String>
- List of failed table names of source and target pair
- validationErrors Property Map
- List of errors that happened while performing data integrity validation
DataItemMigrationSummaryResultResponse, DataItemMigrationSummaryResultResponseArgs            
- EndedOn string
- Migration end time
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- ItemsCompleted doubleCount 
- Number of successfully completed items
- ItemsCount double
- Number of items
- Name string
- Name of the item
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- EndedOn string
- Migration end time
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- ItemsCompleted float64Count 
- Number of successfully completed items
- ItemsCount float64
- Number of items
- Name string
- Name of the item
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- endedOn String
- Migration end time
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- itemsCompleted DoubleCount 
- Number of successfully completed items
- itemsCount Double
- Number of items
- name String
- Name of the item
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
- endedOn string
- Migration end time
- errorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- itemsCompleted numberCount 
- Number of successfully completed items
- itemsCount number
- Number of items
- name string
- Name of the item
- resultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- startedOn string
- Migration start time
- state string
- Current state of migration
- statusMessage string
- Status message
- ended_on str
- Migration end time
- error_prefix str
- Wildcard string prefix to use for querying all errors of the item
- items_completed_ floatcount 
- Number of successfully completed items
- items_count float
- Number of items
- name str
- Name of the item
- result_prefix str
- Wildcard string prefix to use for querying all sub-tem results of the item
- started_on str
- Migration start time
- state str
- Current state of migration
- status_message str
- Status message
- endedOn String
- Migration end time
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- itemsCompleted NumberCount 
- Number of successfully completed items
- itemsCount Number
- Number of items
- name String
- Name of the item
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
DatabaseBackupInfoResponse, DatabaseBackupInfoResponseArgs        
- BackupFiles List<string>
- The list of backup files for the current database.
- BackupFinish stringDate 
- Date and time when the backup operation finished.
- BackupType string
- Backup Type.
- DatabaseName string
- Database name.
- FamilyCount int
- Number of files in the backup set.
- IsCompressed bool
- Whether the backup set is compressed
- IsDamaged bool
- Database was damaged when backed up, but the backup operation was requested to continue despite errors.
- Position int
- Position of current database backup in the file.
- BackupFiles []string
- The list of backup files for the current database.
- BackupFinish stringDate 
- Date and time when the backup operation finished.
- BackupType string
- Backup Type.
- DatabaseName string
- Database name.
- FamilyCount int
- Number of files in the backup set.
- IsCompressed bool
- Whether the backup set is compressed
- IsDamaged bool
- Database was damaged when backed up, but the backup operation was requested to continue despite errors.
- Position int
- Position of current database backup in the file.
- backupFiles List<String>
- The list of backup files for the current database.
- backupFinish StringDate 
- Date and time when the backup operation finished.
- backupType String
- Backup Type.
- databaseName String
- Database name.
- familyCount Integer
- Number of files in the backup set.
- isCompressed Boolean
- Whether the backup set is compressed
- isDamaged Boolean
- Database was damaged when backed up, but the backup operation was requested to continue despite errors.
- position Integer
- Position of current database backup in the file.
- backupFiles string[]
- The list of backup files for the current database.
- backupFinish stringDate 
- Date and time when the backup operation finished.
- backupType string
- Backup Type.
- databaseName string
- Database name.
- familyCount number
- Number of files in the backup set.
- isCompressed boolean
- Whether the backup set is compressed
- isDamaged boolean
- Database was damaged when backed up, but the backup operation was requested to continue despite errors.
- position number
- Position of current database backup in the file.
- backup_files Sequence[str]
- The list of backup files for the current database.
- backup_finish_ strdate 
- Date and time when the backup operation finished.
- backup_type str
- Backup Type.
- database_name str
- Database name.
- family_count int
- Number of files in the backup set.
- is_compressed bool
- Whether the backup set is compressed
- is_damaged bool
- Database was damaged when backed up, but the backup operation was requested to continue despite errors.
- position int
- Position of current database backup in the file.
- backupFiles List<String>
- The list of backup files for the current database.
- backupFinish StringDate 
- Date and time when the backup operation finished.
- backupType String
- Backup Type.
- databaseName String
- Database name.
- familyCount Number
- Number of files in the backup set.
- isCompressed Boolean
- Whether the backup set is compressed
- isDamaged Boolean
- Database was damaged when backed up, but the backup operation was requested to continue despite errors.
- position Number
- Position of current database backup in the file.
DatabaseFileInfoResponse, DatabaseFileInfoResponseArgs        
- DatabaseName string
- Name of the database
- FileType string
- Database file type
- Id string
- Unique identifier for database file
- LogicalName string
- Logical name of the file
- PhysicalFull stringName 
- Operating-system full path of the file
- RestoreFull stringName 
- Suggested full path of the file for restoring
- SizeMB double
- Size of the file in megabytes
- DatabaseName string
- Name of the database
- FileType string
- Database file type
- Id string
- Unique identifier for database file
- LogicalName string
- Logical name of the file
- PhysicalFull stringName 
- Operating-system full path of the file
- RestoreFull stringName 
- Suggested full path of the file for restoring
- SizeMB float64
- Size of the file in megabytes
- databaseName String
- Name of the database
- fileType String
- Database file type
- id String
- Unique identifier for database file
- logicalName String
- Logical name of the file
- physicalFull StringName 
- Operating-system full path of the file
- restoreFull StringName 
- Suggested full path of the file for restoring
- sizeMB Double
- Size of the file in megabytes
- databaseName string
- Name of the database
- fileType string
- Database file type
- id string
- Unique identifier for database file
- logicalName string
- Logical name of the file
- physicalFull stringName 
- Operating-system full path of the file
- restoreFull stringName 
- Suggested full path of the file for restoring
- sizeMB number
- Size of the file in megabytes
- database_name str
- Name of the database
- file_type str
- Database file type
- id str
- Unique identifier for database file
- logical_name str
- Logical name of the file
- physical_full_ strname 
- Operating-system full path of the file
- restore_full_ strname 
- Suggested full path of the file for restoring
- size_mb float
- Size of the file in megabytes
- databaseName String
- Name of the database
- fileType String
- Database file type
- id String
- Unique identifier for database file
- logicalName String
- Logical name of the file
- physicalFull StringName 
- Operating-system full path of the file
- restoreFull StringName 
- Suggested full path of the file for restoring
- sizeMB Number
- Size of the file in megabytes
DatabaseSummaryResultResponse, DatabaseSummaryResultResponseArgs        
- EndedOn string
- Migration end time
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- ItemsCompleted doubleCount 
- Number of successfully completed items
- ItemsCount double
- Number of items
- Name string
- Name of the item
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- SizeMB double
- Size of the database in megabytes
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- EndedOn string
- Migration end time
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- ItemsCompleted float64Count 
- Number of successfully completed items
- ItemsCount float64
- Number of items
- Name string
- Name of the item
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- SizeMB float64
- Size of the database in megabytes
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- endedOn String
- Migration end time
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- itemsCompleted DoubleCount 
- Number of successfully completed items
- itemsCount Double
- Number of items
- name String
- Name of the item
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- sizeMB Double
- Size of the database in megabytes
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
- endedOn string
- Migration end time
- errorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- itemsCompleted numberCount 
- Number of successfully completed items
- itemsCount number
- Number of items
- name string
- Name of the item
- resultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- sizeMB number
- Size of the database in megabytes
- startedOn string
- Migration start time
- state string
- Current state of migration
- statusMessage string
- Status message
- ended_on str
- Migration end time
- error_prefix str
- Wildcard string prefix to use for querying all errors of the item
- items_completed_ floatcount 
- Number of successfully completed items
- items_count float
- Number of items
- name str
- Name of the item
- result_prefix str
- Wildcard string prefix to use for querying all sub-tem results of the item
- size_mb float
- Size of the database in megabytes
- started_on str
- Migration start time
- state str
- Current state of migration
- status_message str
- Status message
- endedOn String
- Migration end time
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- itemsCompleted NumberCount 
- Number of successfully completed items
- itemsCount Number
- Number of items
- name String
- Name of the item
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- sizeMB Number
- Size of the database in megabytes
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
DatabaseTableResponse, DatabaseTableResponseArgs      
ExecutionStatisticsResponse, ExecutionStatisticsResponseArgs      
- CpuTime doubleMs 
- CPU Time in millisecond(s) for the query execution
- ElapsedTime doubleMs 
- Time taken in millisecond(s) for executing the query
- ExecutionCount double
- No. of query executions
- HasErrors bool
- Indicates whether the query resulted in an error
- SqlErrors List<string>
- List of sql Errors
- WaitStats Dictionary<string, Pulumi.Azure Native. Data Migration. Inputs. Wait Statistics Response> 
- Dictionary of sql query execution wait types and the respective statistics
- CpuTime float64Ms 
- CPU Time in millisecond(s) for the query execution
- ElapsedTime float64Ms 
- Time taken in millisecond(s) for executing the query
- ExecutionCount float64
- No. of query executions
- HasErrors bool
- Indicates whether the query resulted in an error
- SqlErrors []string
- List of sql Errors
- WaitStats map[string]WaitStatistics Response 
- Dictionary of sql query execution wait types and the respective statistics
- cpuTime DoubleMs 
- CPU Time in millisecond(s) for the query execution
- elapsedTime DoubleMs 
- Time taken in millisecond(s) for executing the query
- executionCount Double
- No. of query executions
- hasErrors Boolean
- Indicates whether the query resulted in an error
- sqlErrors List<String>
- List of sql Errors
- waitStats Map<String,WaitStatistics Response> 
- Dictionary of sql query execution wait types and the respective statistics
- cpuTime numberMs 
- CPU Time in millisecond(s) for the query execution
- elapsedTime numberMs 
- Time taken in millisecond(s) for executing the query
- executionCount number
- No. of query executions
- hasErrors boolean
- Indicates whether the query resulted in an error
- sqlErrors string[]
- List of sql Errors
- waitStats {[key: string]: WaitStatistics Response} 
- Dictionary of sql query execution wait types and the respective statistics
- cpu_time_ floatms 
- CPU Time in millisecond(s) for the query execution
- elapsed_time_ floatms 
- Time taken in millisecond(s) for executing the query
- execution_count float
- No. of query executions
- has_errors bool
- Indicates whether the query resulted in an error
- sql_errors Sequence[str]
- List of sql Errors
- wait_stats Mapping[str, WaitStatistics Response] 
- Dictionary of sql query execution wait types and the respective statistics
- cpuTime NumberMs 
- CPU Time in millisecond(s) for the query execution
- elapsedTime NumberMs 
- Time taken in millisecond(s) for executing the query
- executionCount Number
- No. of query executions
- hasErrors Boolean
- Indicates whether the query resulted in an error
- sqlErrors List<String>
- List of sql Errors
- waitStats Map<Property Map>
- Dictionary of sql query execution wait types and the respective statistics
FileShare, FileShareArgs    
FileShareResponse, FileShareResponseArgs      
GetTdeCertificatesSqlTaskInput, GetTdeCertificatesSqlTaskInputArgs            
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share 
- Backup file share information for file share to be used for temporarily storing files.
- ConnectionInfo Pulumi.Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for SQL Server
- SelectedCertificates List<Pulumi.Azure Native. Data Migration. Inputs. Selected Certificate Input> 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare 
- Backup file share information for file share to be used for temporarily storing files.
- ConnectionInfo SqlConnection Info 
- Connection information for SQL Server
- SelectedCertificates []SelectedCertificate Input 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare 
- Backup file share information for file share to be used for temporarily storing files.
- connectionInfo SqlConnection Info 
- Connection information for SQL Server
- selectedCertificates List<SelectedCertificate Input> 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare 
- Backup file share information for file share to be used for temporarily storing files.
- connectionInfo SqlConnection Info 
- Connection information for SQL Server
- selectedCertificates SelectedCertificate Input[] 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare 
- Backup file share information for file share to be used for temporarily storing files.
- connection_info SqlConnection Info 
- Connection information for SQL Server
- selected_certificates Sequence[SelectedCertificate Input] 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- Property Map
- Backup file share information for file share to be used for temporarily storing files.
- connectionInfo Property Map
- Connection information for SQL Server
- selectedCertificates List<Property Map>
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
GetTdeCertificatesSqlTaskInputResponse, GetTdeCertificatesSqlTaskInputResponseArgs              
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share Response 
- Backup file share information for file share to be used for temporarily storing files.
- ConnectionInfo Pulumi.Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for SQL Server
- SelectedCertificates List<Pulumi.Azure Native. Data Migration. Inputs. Selected Certificate Input Response> 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare Response 
- Backup file share information for file share to be used for temporarily storing files.
- ConnectionInfo SqlConnection Info Response 
- Connection information for SQL Server
- SelectedCertificates []SelectedCertificate Input Response 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare Response 
- Backup file share information for file share to be used for temporarily storing files.
- connectionInfo SqlConnection Info Response 
- Connection information for SQL Server
- selectedCertificates List<SelectedCertificate Input Response> 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare Response 
- Backup file share information for file share to be used for temporarily storing files.
- connectionInfo SqlConnection Info Response 
- Connection information for SQL Server
- selectedCertificates SelectedCertificate Input Response[] 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- 
FileShare Response 
- Backup file share information for file share to be used for temporarily storing files.
- connection_info SqlConnection Info Response 
- Connection information for SQL Server
- selected_certificates Sequence[SelectedCertificate Input Response] 
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
- Property Map
- Backup file share information for file share to be used for temporarily storing files.
- connectionInfo Property Map
- Connection information for SQL Server
- selectedCertificates List<Property Map>
- List containing certificate names and corresponding password to use for encrypting the exported certificate.
GetTdeCertificatesSqlTaskOutputResponse, GetTdeCertificatesSqlTaskOutputResponseArgs              
- Base64EncodedCertificates Dictionary<string, ImmutableArray<string>> 
- Mapping from certificate name to base 64 encoded format.
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors
- Base64EncodedCertificates map[string][]string
- Mapping from certificate name to base 64 encoded format.
- ValidationErrors []ReportableException Response 
- Validation errors
- base64EncodedCertificates Map<String,List<String>>
- Mapping from certificate name to base 64 encoded format.
- validationErrors List<ReportableException Response> 
- Validation errors
- base64EncodedCertificates {[key: string]: string[]}
- Mapping from certificate name to base 64 encoded format.
- validationErrors ReportableException Response[] 
- Validation errors
- base64_encoded_ Mapping[str, Sequence[str]]certificates 
- Mapping from certificate name to base 64 encoded format.
- validation_errors Sequence[ReportableException Response] 
- Validation errors
- base64EncodedCertificates Map<List<String>>
- Mapping from certificate name to base 64 encoded format.
- validationErrors List<Property Map>
- Validation errors
GetTdeCertificatesSqlTaskProperties, GetTdeCertificatesSqlTaskPropertiesArgs            
- Input
GetTde Certificates Sql Task Input 
- Task input
- input
GetTde Certificates Sql Task Input 
- Task input
- input
GetTde Certificates Sql Task Input 
- Task input
- input
GetTde Certificates Sql Task Input 
- Task input
- input Property Map
- Task input
GetTdeCertificatesSqlTaskPropertiesResponse, GetTdeCertificatesSqlTaskPropertiesResponseArgs              
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Get Tde Certificates Sql Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Get Tde Certificates Sql Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]GetTde Certificates Sql Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
GetTde Certificates Sql Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<GetTde Certificates Sql Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
GetTde Certificates Sql Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
GetTde Certificates Sql Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
GetTde Certificates Sql Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[GetTde Certificates Sql Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
GetTde Certificates Sql Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
GetUserTablesSqlSyncTaskInput, GetUserTablesSqlSyncTaskInputArgs              
- SelectedSource List<string>Databases 
- List of source database names to collect tables for
- SelectedTarget List<string>Databases 
- List of target database names to collect tables for
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for SQL Server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for SQL DB
- SelectedSource []stringDatabases 
- List of source database names to collect tables for
- SelectedTarget []stringDatabases 
- List of target database names to collect tables for
- SourceConnection SqlInfo Connection Info 
- Connection information for SQL Server
- TargetConnection SqlInfo Connection Info 
- Connection information for SQL DB
- selectedSource List<String>Databases 
- List of source database names to collect tables for
- selectedTarget List<String>Databases 
- List of target database names to collect tables for
- sourceConnection SqlInfo Connection Info 
- Connection information for SQL Server
- targetConnection SqlInfo Connection Info 
- Connection information for SQL DB
- selectedSource string[]Databases 
- List of source database names to collect tables for
- selectedTarget string[]Databases 
- List of target database names to collect tables for
- sourceConnection SqlInfo Connection Info 
- Connection information for SQL Server
- targetConnection SqlInfo Connection Info 
- Connection information for SQL DB
- selected_source_ Sequence[str]databases 
- List of source database names to collect tables for
- selected_target_ Sequence[str]databases 
- List of target database names to collect tables for
- source_connection_ Sqlinfo Connection Info 
- Connection information for SQL Server
- target_connection_ Sqlinfo Connection Info 
- Connection information for SQL DB
- selectedSource List<String>Databases 
- List of source database names to collect tables for
- selectedTarget List<String>Databases 
- List of target database names to collect tables for
- sourceConnection Property MapInfo 
- Connection information for SQL Server
- targetConnection Property MapInfo 
- Connection information for SQL DB
GetUserTablesSqlSyncTaskInputResponse, GetUserTablesSqlSyncTaskInputResponseArgs                
- SelectedSource List<string>Databases 
- List of source database names to collect tables for
- SelectedTarget List<string>Databases 
- List of target database names to collect tables for
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for SQL Server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for SQL DB
- SelectedSource []stringDatabases 
- List of source database names to collect tables for
- SelectedTarget []stringDatabases 
- List of target database names to collect tables for
- SourceConnection SqlInfo Connection Info Response 
- Connection information for SQL Server
- TargetConnection SqlInfo Connection Info Response 
- Connection information for SQL DB
- selectedSource List<String>Databases 
- List of source database names to collect tables for
- selectedTarget List<String>Databases 
- List of target database names to collect tables for
- sourceConnection SqlInfo Connection Info Response 
- Connection information for SQL Server
- targetConnection SqlInfo Connection Info Response 
- Connection information for SQL DB
- selectedSource string[]Databases 
- List of source database names to collect tables for
- selectedTarget string[]Databases 
- List of target database names to collect tables for
- sourceConnection SqlInfo Connection Info Response 
- Connection information for SQL Server
- targetConnection SqlInfo Connection Info Response 
- Connection information for SQL DB
- selected_source_ Sequence[str]databases 
- List of source database names to collect tables for
- selected_target_ Sequence[str]databases 
- List of target database names to collect tables for
- source_connection_ Sqlinfo Connection Info Response 
- Connection information for SQL Server
- target_connection_ Sqlinfo Connection Info Response 
- Connection information for SQL DB
- selectedSource List<String>Databases 
- List of source database names to collect tables for
- selectedTarget List<String>Databases 
- List of target database names to collect tables for
- sourceConnection Property MapInfo 
- Connection information for SQL Server
- targetConnection Property MapInfo 
- Connection information for SQL DB
GetUserTablesSqlSyncTaskOutputResponse, GetUserTablesSqlSyncTaskOutputResponseArgs                
- DatabasesTo Dictionary<string, ImmutableSource Tables Array<Pulumi. Azure Native. Data Migration. Inputs. Database Table Response>> 
- Mapping from database name to list of source tables
- DatabasesTo Dictionary<string, ImmutableTarget Tables Array<Pulumi. Azure Native. Data Migration. Inputs. Database Table Response>> 
- Mapping from database name to list of target tables
- TableValidation Dictionary<string, ImmutableErrors Array<string>> 
- Mapping from database name to list of validation errors
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors
- DatabasesTo map[string][]DatabaseSource Tables Table Response 
- Mapping from database name to list of source tables
- DatabasesTo map[string][]DatabaseTarget Tables Table Response 
- Mapping from database name to list of target tables
- TableValidation map[string][]stringErrors 
- Mapping from database name to list of validation errors
- ValidationErrors []ReportableException Response 
- Validation errors
- databasesTo Map<String,List<DatabaseSource Tables Table Response>> 
- Mapping from database name to list of source tables
- databasesTo Map<String,List<DatabaseTarget Tables Table Response>> 
- Mapping from database name to list of target tables
- tableValidation Map<String,List<String>>Errors 
- Mapping from database name to list of validation errors
- validationErrors List<ReportableException Response> 
- Validation errors
- databasesTo {[key: string]: DatabaseSource Tables Table Response[]} 
- Mapping from database name to list of source tables
- databasesTo {[key: string]: DatabaseTarget Tables Table Response[]} 
- Mapping from database name to list of target tables
- tableValidation {[key: string]: string[]}Errors 
- Mapping from database name to list of validation errors
- validationErrors ReportableException Response[] 
- Validation errors
- databases_to_ Mapping[str, Sequence[Databasesource_ tables Table Response]] 
- Mapping from database name to list of source tables
- databases_to_ Mapping[str, Sequence[Databasetarget_ tables Table Response]] 
- Mapping from database name to list of target tables
- table_validation_ Mapping[str, Sequence[str]]errors 
- Mapping from database name to list of validation errors
- validation_errors Sequence[ReportableException Response] 
- Validation errors
- databasesTo Map<List<Property Map>>Source Tables 
- Mapping from database name to list of source tables
- databasesTo Map<List<Property Map>>Target Tables 
- Mapping from database name to list of target tables
- tableValidation Map<List<String>>Errors 
- Mapping from database name to list of validation errors
- validationErrors List<Property Map>
- Validation errors
GetUserTablesSqlSyncTaskProperties, GetUserTablesSqlSyncTaskPropertiesArgs              
- Input
GetUser Tables Sql Sync Task Input 
- Task input
- input
GetUser Tables Sql Sync Task Input 
- Task input
- input
GetUser Tables Sql Sync Task Input 
- Task input
- input
GetUser Tables Sql Sync Task Input 
- Task input
- input Property Map
- Task input
GetUserTablesSqlSyncTaskPropertiesResponse, GetUserTablesSqlSyncTaskPropertiesResponseArgs                
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Get User Tables Sql Sync Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Get User Tables Sql Sync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]GetUser Tables Sql Sync Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
GetUser Tables Sql Sync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<GetUser Tables Sql Sync Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
GetUser Tables Sql Sync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
GetUser Tables Sql Sync Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
GetUser Tables Sql Sync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[GetUser Tables Sql Sync Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
GetUser Tables Sql Sync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
GetUserTablesSqlTaskInput, GetUserTablesSqlTaskInputArgs            
- ConnectionInfo Pulumi.Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for SQL Server
- SelectedDatabases List<string>
- List of database names to collect tables for
- ConnectionInfo SqlConnection Info 
- Connection information for SQL Server
- SelectedDatabases []string
- List of database names to collect tables for
- connectionInfo SqlConnection Info 
- Connection information for SQL Server
- selectedDatabases List<String>
- List of database names to collect tables for
- connectionInfo SqlConnection Info 
- Connection information for SQL Server
- selectedDatabases string[]
- List of database names to collect tables for
- connection_info SqlConnection Info 
- Connection information for SQL Server
- selected_databases Sequence[str]
- List of database names to collect tables for
- connectionInfo Property Map
- Connection information for SQL Server
- selectedDatabases List<String>
- List of database names to collect tables for
GetUserTablesSqlTaskInputResponse, GetUserTablesSqlTaskInputResponseArgs              
- ConnectionInfo Pulumi.Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for SQL Server
- SelectedDatabases List<string>
- List of database names to collect tables for
- ConnectionInfo SqlConnection Info Response 
- Connection information for SQL Server
- SelectedDatabases []string
- List of database names to collect tables for
- connectionInfo SqlConnection Info Response 
- Connection information for SQL Server
- selectedDatabases List<String>
- List of database names to collect tables for
- connectionInfo SqlConnection Info Response 
- Connection information for SQL Server
- selectedDatabases string[]
- List of database names to collect tables for
- connection_info SqlConnection Info Response 
- Connection information for SQL Server
- selected_databases Sequence[str]
- List of database names to collect tables for
- connectionInfo Property Map
- Connection information for SQL Server
- selectedDatabases List<String>
- List of database names to collect tables for
GetUserTablesSqlTaskOutputResponse, GetUserTablesSqlTaskOutputResponseArgs              
- DatabasesTo Dictionary<string, ImmutableTables Array<Pulumi. Azure Native. Data Migration. Inputs. Database Table Response>> 
- Mapping from database name to list of tables
- Id string
- Result identifier
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Validation errors
- DatabasesTo map[string][]DatabaseTables Table Response 
- Mapping from database name to list of tables
- Id string
- Result identifier
- ValidationErrors []ReportableException Response 
- Validation errors
- databasesTo Map<String,List<DatabaseTables Table Response>> 
- Mapping from database name to list of tables
- id String
- Result identifier
- validationErrors List<ReportableException Response> 
- Validation errors
- databasesTo {[key: string]: DatabaseTables Table Response[]} 
- Mapping from database name to list of tables
- id string
- Result identifier
- validationErrors ReportableException Response[] 
- Validation errors
- databases_to_ Mapping[str, Sequence[Databasetables Table Response]] 
- Mapping from database name to list of tables
- id str
- Result identifier
- validation_errors Sequence[ReportableException Response] 
- Validation errors
- databasesTo Map<List<Property Map>>Tables 
- Mapping from database name to list of tables
- id String
- Result identifier
- validationErrors List<Property Map>
- Validation errors
GetUserTablesSqlTaskProperties, GetUserTablesSqlTaskPropertiesArgs            
- Input
GetUser Tables Sql Task Input 
- Task input
- input
GetUser Tables Sql Task Input 
- Task input
- input
GetUser Tables Sql Task Input 
- Task input
- input
GetUser Tables Sql Task Input 
- Task input
- input Property Map
- Task input
GetUserTablesSqlTaskPropertiesResponse, GetUserTablesSqlTaskPropertiesResponseArgs              
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Get User Tables Sql Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Get User Tables Sql Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]GetUser Tables Sql Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
GetUser Tables Sql Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<GetUser Tables Sql Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
GetUser Tables Sql Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
GetUser Tables Sql Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
GetUser Tables Sql Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[GetUser Tables Sql Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
GetUser Tables Sql Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
MiSqlConnectionInfo, MiSqlConnectionInfoArgs        
- ManagedInstance stringResource Id 
- Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- UserName string
- User name
- ManagedInstance stringResource Id 
- Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- UserName string
- User name
- managedInstance StringResource Id 
- Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- userName String
- User name
- managedInstance stringResource Id 
- Resource id for Azure SQL database Managed instance
- password string
- Password credential.
- userName string
- User name
- managed_instance_ strresource_ id 
- Resource id for Azure SQL database Managed instance
- password str
- Password credential.
- user_name str
- User name
- managedInstance StringResource Id 
- Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- userName String
- User name
MiSqlConnectionInfoResponse, MiSqlConnectionInfoResponseArgs          
- ManagedInstance stringResource Id 
- Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- UserName string
- User name
- ManagedInstance stringResource Id 
- Resource id for Azure SQL database Managed instance
- Password string
- Password credential.
- UserName string
- User name
- managedInstance StringResource Id 
- Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- userName String
- User name
- managedInstance stringResource Id 
- Resource id for Azure SQL database Managed instance
- password string
- Password credential.
- userName string
- User name
- managed_instance_ strresource_ id 
- Resource id for Azure SQL database Managed instance
- password str
- Password credential.
- user_name str
- User name
- managedInstance StringResource Id 
- Resource id for Azure SQL database Managed instance
- password String
- Password credential.
- userName String
- User name
MigrateMISyncCompleteCommandInputResponse, MigrateMISyncCompleteCommandInputResponseArgs            
- SourceDatabase stringName 
- Name of managed instance database
- SourceDatabase stringName 
- Name of managed instance database
- sourceDatabase StringName 
- Name of managed instance database
- sourceDatabase stringName 
- Name of managed instance database
- source_database_ strname 
- Name of managed instance database
- sourceDatabase StringName 
- Name of managed instance database
MigrateMISyncCompleteCommandOutputResponse, MigrateMISyncCompleteCommandOutputResponseArgs            
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- List of errors that happened during the command execution
- Errors
[]ReportableException Response 
- List of errors that happened during the command execution
- errors
List<ReportableException Response> 
- List of errors that happened during the command execution
- errors
ReportableException Response[] 
- List of errors that happened during the command execution
- errors
Sequence[ReportableException Response] 
- List of errors that happened during the command execution
- errors List<Property Map>
- List of errors that happened during the command execution
MigrateMISyncCompleteCommandPropertiesResponse, MigrateMISyncCompleteCommandPropertiesResponseArgs            
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Output Response 
- Command output. This is ignored if submitted.
- State string
- The state of the command. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Input Response 
- Command input
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
MigrateMISync Complete Command Output Response 
- Command output. This is ignored if submitted.
- State string
- The state of the command. This is ignored if submitted.
- Input
MigrateMISync Complete Command Input Response 
- Command input
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
MigrateMISync Complete Command Output Response 
- Command output. This is ignored if submitted.
- state String
- The state of the command. This is ignored if submitted.
- input
MigrateMISync Complete Command Input Response 
- Command input
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
MigrateMISync Complete Command Output Response 
- Command output. This is ignored if submitted.
- state string
- The state of the command. This is ignored if submitted.
- input
MigrateMISync Complete Command Input Response 
- Command input
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
MigrateMISync Complete Command Output Response 
- Command output. This is ignored if submitted.
- state str
- The state of the command. This is ignored if submitted.
- input
MigrateMISync Complete Command Input Response 
- Command input
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output Property Map
- Command output. This is ignored if submitted.
- state String
- The state of the command. This is ignored if submitted.
- input Property Map
- Command input
MigrateMySqlAzureDbForMySqlSyncDatabaseInput, MigrateMySqlAzureDbForMySqlSyncDatabaseInputArgs                      
- MigrationSetting Dictionary<string, string>
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting Dictionary<string, string>
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting Dictionary<string, string>
- Target settings to tune target endpoint migration behavior
- MigrationSetting map[string]string
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting map[string]string
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting map[string]string
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String,String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String,String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String,String>
- Target settings to tune target endpoint migration behavior
- migrationSetting {[key: string]: string}
- Migration settings which tune the migration behavior
- name string
- Name of the database
- sourceSetting {[key: string]: string}
- Source settings to tune source endpoint migration behavior
- targetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting {[key: string]: string}
- Target settings to tune target endpoint migration behavior
- migration_setting Mapping[str, str]
- Migration settings which tune the migration behavior
- name str
- Name of the database
- source_setting Mapping[str, str]
- Source settings to tune source endpoint migration behavior
- target_database_ strname 
- Name of target database. Note: Target database will be truncated before starting migration.
- target_setting Mapping[str, str]
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String>
- Target settings to tune target endpoint migration behavior
MigrateMySqlAzureDbForMySqlSyncDatabaseInputResponse, MigrateMySqlAzureDbForMySqlSyncDatabaseInputResponseArgs                        
- MigrationSetting Dictionary<string, string>
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting Dictionary<string, string>
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting Dictionary<string, string>
- Target settings to tune target endpoint migration behavior
- MigrationSetting map[string]string
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting map[string]string
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting map[string]string
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String,String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String,String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String,String>
- Target settings to tune target endpoint migration behavior
- migrationSetting {[key: string]: string}
- Migration settings which tune the migration behavior
- name string
- Name of the database
- sourceSetting {[key: string]: string}
- Source settings to tune source endpoint migration behavior
- targetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting {[key: string]: string}
- Target settings to tune target endpoint migration behavior
- migration_setting Mapping[str, str]
- Migration settings which tune the migration behavior
- name str
- Name of the database
- source_setting Mapping[str, str]
- Source settings to tune source endpoint migration behavior
- target_database_ strname 
- Name of target database. Note: Target database will be truncated before starting migration.
- target_setting Mapping[str, str]
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String>
- Target settings to tune target endpoint migration behavior
MigrateMySqlAzureDbForMySqlSyncTaskInput, MigrateMySqlAzureDbForMySqlSyncTaskInputArgs                      
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate My Sql Azure Db For My Sql Sync Database Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info 
- Connection information for source MySQL
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info 
- Connection information for target Azure Database for MySQL
- SelectedDatabases []MigrateMy Sql Azure Db For My Sql Sync Database Input 
- Databases to migrate
- SourceConnection MyInfo Sql Connection Info 
- Connection information for source MySQL
- TargetConnection MyInfo Sql Connection Info 
- Connection information for target Azure Database for MySQL
- selectedDatabases List<MigrateMy Sql Azure Db For My Sql Sync Database Input> 
- Databases to migrate
- sourceConnection MyInfo Sql Connection Info 
- Connection information for source MySQL
- targetConnection MyInfo Sql Connection Info 
- Connection information for target Azure Database for MySQL
- selectedDatabases MigrateMy Sql Azure Db For My Sql Sync Database Input[] 
- Databases to migrate
- sourceConnection MyInfo Sql Connection Info 
- Connection information for source MySQL
- targetConnection MyInfo Sql Connection Info 
- Connection information for target Azure Database for MySQL
- selected_databases Sequence[MigrateMy Sql Azure Db For My Sql Sync Database Input] 
- Databases to migrate
- source_connection_ Myinfo Sql Connection Info 
- Connection information for source MySQL
- target_connection_ Myinfo Sql Connection Info 
- Connection information for target Azure Database for MySQL
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source MySQL
- targetConnection Property MapInfo 
- Connection information for target Azure Database for MySQL
MigrateMySqlAzureDbForMySqlSyncTaskInputResponse, MigrateMySqlAzureDbForMySqlSyncTaskInputResponseArgs                        
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate My Sql Azure Db For My Sql Sync Database Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info Response 
- Connection information for source MySQL
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. My Sql Connection Info Response 
- Connection information for target Azure Database for MySQL
- SelectedDatabases []MigrateMy Sql Azure Db For My Sql Sync Database Input Response 
- Databases to migrate
- SourceConnection MyInfo Sql Connection Info Response 
- Connection information for source MySQL
- TargetConnection MyInfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL
- selectedDatabases List<MigrateMy Sql Azure Db For My Sql Sync Database Input Response> 
- Databases to migrate
- sourceConnection MyInfo Sql Connection Info Response 
- Connection information for source MySQL
- targetConnection MyInfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL
- selectedDatabases MigrateMy Sql Azure Db For My Sql Sync Database Input Response[] 
- Databases to migrate
- sourceConnection MyInfo Sql Connection Info Response 
- Connection information for source MySQL
- targetConnection MyInfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL
- selected_databases Sequence[MigrateMy Sql Azure Db For My Sql Sync Database Input Response] 
- Databases to migrate
- source_connection_ Myinfo Sql Connection Info Response 
- Connection information for source MySQL
- target_connection_ Myinfo Sql Connection Info Response 
- Connection information for target Azure Database for MySQL
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source MySQL
- targetConnection Property MapInfo 
- Connection information for target Azure Database for MySQL
MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseErrorResponse, MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseErrorResponseArgs                            
- Id string
- Result identifier
- ErrorMessage string
- Error message
- Events
List<Pulumi.Azure Native. Data Migration. Inputs. Sync Migration Database Error Event Response> 
- List of error events.
- Id string
- Result identifier
- ErrorMessage string
- Error message
- Events
[]SyncMigration Database Error Event Response 
- List of error events.
- id String
- Result identifier
- errorMessage String
- Error message
- events
List<SyncMigration Database Error Event Response> 
- List of error events.
- id string
- Result identifier
- errorMessage string
- Error message
- events
SyncMigration Database Error Event Response[] 
- List of error events.
- id str
- Result identifier
- error_message str
- Error message
- events
Sequence[SyncMigration Database Error Event Response] 
- List of error events.
- id String
- Result identifier
- errorMessage String
- Error message
- events List<Property Map>
- List of error events.
MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevelResponse, MigrateMySqlAzureDbForMySqlSyncTaskOutputDatabaseLevelResponseArgs                            
- AppliedChanges double
- Number of applied changes
- CdcDelete doubleCounter 
- Number of cdc deletes
- CdcInsert doubleCounter 
- Number of cdc inserts
- CdcUpdate doubleCounter 
- Number of cdc updates
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- FullLoad doubleCompleted Tables 
- Number of tables completed in full load
- FullLoad doubleErrored Tables 
- Number of tables errored in full load
- FullLoad doubleLoading Tables 
- Number of tables loading in full load
- FullLoad doubleQueued Tables 
- Number of tables queued in full load
- Id string
- Result identifier
- IncomingChanges double
- Number of incoming changes
- InitializationCompleted bool
- Indicates if initial load (full load) has been completed
- Latency double
- CDC apply latency
- MigrationState string
- Migration state that this database is in
- StartedOn string
- Migration start time
- AppliedChanges float64
- Number of applied changes
- CdcDelete float64Counter 
- Number of cdc deletes
- CdcInsert float64Counter 
- Number of cdc inserts
- CdcUpdate float64Counter 
- Number of cdc updates
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- FullLoad float64Completed Tables 
- Number of tables completed in full load
- FullLoad float64Errored Tables 
- Number of tables errored in full load
- FullLoad float64Loading Tables 
- Number of tables loading in full load
- FullLoad float64Queued Tables 
- Number of tables queued in full load
- Id string
- Result identifier
- IncomingChanges float64
- Number of incoming changes
- InitializationCompleted bool
- Indicates if initial load (full load) has been completed
- Latency float64
- CDC apply latency
- MigrationState string
- Migration state that this database is in
- StartedOn string
- Migration start time
- appliedChanges Double
- Number of applied changes
- cdcDelete DoubleCounter 
- Number of cdc deletes
- cdcInsert DoubleCounter 
- Number of cdc inserts
- cdcUpdate DoubleCounter 
- Number of cdc updates
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- fullLoad DoubleCompleted Tables 
- Number of tables completed in full load
- fullLoad DoubleErrored Tables 
- Number of tables errored in full load
- fullLoad DoubleLoading Tables 
- Number of tables loading in full load
- fullLoad DoubleQueued Tables 
- Number of tables queued in full load
- id String
- Result identifier
- incomingChanges Double
- Number of incoming changes
- initializationCompleted Boolean
- Indicates if initial load (full load) has been completed
- latency Double
- CDC apply latency
- migrationState String
- Migration state that this database is in
- startedOn String
- Migration start time
- appliedChanges number
- Number of applied changes
- cdcDelete numberCounter 
- Number of cdc deletes
- cdcInsert numberCounter 
- Number of cdc inserts
- cdcUpdate numberCounter 
- Number of cdc updates
- databaseName string
- Name of the database
- endedOn string
- Migration end time
- fullLoad numberCompleted Tables 
- Number of tables completed in full load
- fullLoad numberErrored Tables 
- Number of tables errored in full load
- fullLoad numberLoading Tables 
- Number of tables loading in full load
- fullLoad numberQueued Tables 
- Number of tables queued in full load
- id string
- Result identifier
- incomingChanges number
- Number of incoming changes
- initializationCompleted boolean
- Indicates if initial load (full load) has been completed
- latency number
- CDC apply latency
- migrationState string
- Migration state that this database is in
- startedOn string
- Migration start time
- applied_changes float
- Number of applied changes
- cdc_delete_ floatcounter 
- Number of cdc deletes
- cdc_insert_ floatcounter 
- Number of cdc inserts
- cdc_update_ floatcounter 
- Number of cdc updates
- database_name str
- Name of the database
- ended_on str
- Migration end time
- full_load_ floatcompleted_ tables 
- Number of tables completed in full load
- full_load_ floaterrored_ tables 
- Number of tables errored in full load
- full_load_ floatloading_ tables 
- Number of tables loading in full load
- full_load_ floatqueued_ tables 
- Number of tables queued in full load
- id str
- Result identifier
- incoming_changes float
- Number of incoming changes
- initialization_completed bool
- Indicates if initial load (full load) has been completed
- latency float
- CDC apply latency
- migration_state str
- Migration state that this database is in
- started_on str
- Migration start time
- appliedChanges Number
- Number of applied changes
- cdcDelete NumberCounter 
- Number of cdc deletes
- cdcInsert NumberCounter 
- Number of cdc inserts
- cdcUpdate NumberCounter 
- Number of cdc updates
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- fullLoad NumberCompleted Tables 
- Number of tables completed in full load
- fullLoad NumberErrored Tables 
- Number of tables errored in full load
- fullLoad NumberLoading Tables 
- Number of tables loading in full load
- fullLoad NumberQueued Tables 
- Number of tables queued in full load
- id String
- Result identifier
- incomingChanges Number
- Number of incoming changes
- initializationCompleted Boolean
- Indicates if initial load (full load) has been completed
- latency Number
- CDC apply latency
- migrationState String
- Migration state that this database is in
- startedOn String
- Migration start time
MigrateMySqlAzureDbForMySqlSyncTaskOutputErrorResponse, MigrateMySqlAzureDbForMySqlSyncTaskOutputErrorResponseArgs                          
- Error
Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response 
- Migration error
- Id string
- Result identifier
- Error
ReportableException Response 
- Migration error
- Id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id String
- Result identifier
- error
ReportableException Response 
- Migration error
- id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id str
- Result identifier
- error Property Map
- Migration error
- id String
- Result identifier
MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevelResponse, MigrateMySqlAzureDbForMySqlSyncTaskOutputMigrationLevelResponseArgs                            
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer string
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- TargetServer string
- Target server name
- TargetServer stringVersion 
- Target server version
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer string
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- TargetServer string
- Target server name
- TargetServer stringVersion 
- Target server version
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer String
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- targetServer String
- Target server name
- targetServer StringVersion 
- Target server version
- endedOn string
- Migration end time
- id string
- Result identifier
- sourceServer string
- Source server name
- sourceServer stringVersion 
- Source server version
- startedOn string
- Migration start time
- targetServer string
- Target server name
- targetServer stringVersion 
- Target server version
- ended_on str
- Migration end time
- id str
- Result identifier
- source_server str
- Source server name
- source_server_ strversion 
- Source server version
- started_on str
- Migration start time
- target_server str
- Target server name
- target_server_ strversion 
- Target server version
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer String
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- targetServer String
- Target server name
- targetServer StringVersion 
- Target server version
MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevelResponse, MigrateMySqlAzureDbForMySqlSyncTaskOutputTableLevelResponseArgs                            
- CdcDelete stringCounter 
- Number of applied deletes
- CdcInsert stringCounter 
- Number of applied inserts
- CdcUpdate stringCounter 
- Number of applied updates
- DataErrors doubleCounter 
- Number of data errors occurred
- DatabaseName string
- Name of the database
- FullLoad stringEnded On 
- Full load end time
- FullLoad stringEst Finish Time 
- Estimate to finish full load
- FullLoad stringStarted On 
- Full load start time
- FullLoad doubleTotal Rows 
- Number of rows applied in full load
- Id string
- Result identifier
- LastModified stringTime 
- Last modified time on target
- State string
- Current state of the table migration
- TableName string
- Name of the table
- TotalChanges doubleApplied 
- Total number of applied changes
- CdcDelete stringCounter 
- Number of applied deletes
- CdcInsert stringCounter 
- Number of applied inserts
- CdcUpdate stringCounter 
- Number of applied updates
- DataErrors float64Counter 
- Number of data errors occurred
- DatabaseName string
- Name of the database
- FullLoad stringEnded On 
- Full load end time
- FullLoad stringEst Finish Time 
- Estimate to finish full load
- FullLoad stringStarted On 
- Full load start time
- FullLoad float64Total Rows 
- Number of rows applied in full load
- Id string
- Result identifier
- LastModified stringTime 
- Last modified time on target
- State string
- Current state of the table migration
- TableName string
- Name of the table
- TotalChanges float64Applied 
- Total number of applied changes
- cdcDelete StringCounter 
- Number of applied deletes
- cdcInsert StringCounter 
- Number of applied inserts
- cdcUpdate StringCounter 
- Number of applied updates
- dataErrors DoubleCounter 
- Number of data errors occurred
- databaseName String
- Name of the database
- fullLoad StringEnded On 
- Full load end time
- fullLoad StringEst Finish Time 
- Estimate to finish full load
- fullLoad StringStarted On 
- Full load start time
- fullLoad DoubleTotal Rows 
- Number of rows applied in full load
- id String
- Result identifier
- lastModified StringTime 
- Last modified time on target
- state String
- Current state of the table migration
- tableName String
- Name of the table
- totalChanges DoubleApplied 
- Total number of applied changes
- cdcDelete stringCounter 
- Number of applied deletes
- cdcInsert stringCounter 
- Number of applied inserts
- cdcUpdate stringCounter 
- Number of applied updates
- dataErrors numberCounter 
- Number of data errors occurred
- databaseName string
- Name of the database
- fullLoad stringEnded On 
- Full load end time
- fullLoad stringEst Finish Time 
- Estimate to finish full load
- fullLoad stringStarted On 
- Full load start time
- fullLoad numberTotal Rows 
- Number of rows applied in full load
- id string
- Result identifier
- lastModified stringTime 
- Last modified time on target
- state string
- Current state of the table migration
- tableName string
- Name of the table
- totalChanges numberApplied 
- Total number of applied changes
- cdc_delete_ strcounter 
- Number of applied deletes
- cdc_insert_ strcounter 
- Number of applied inserts
- cdc_update_ strcounter 
- Number of applied updates
- data_errors_ floatcounter 
- Number of data errors occurred
- database_name str
- Name of the database
- full_load_ strended_ on 
- Full load end time
- full_load_ strest_ finish_ time 
- Estimate to finish full load
- full_load_ strstarted_ on 
- Full load start time
- full_load_ floattotal_ rows 
- Number of rows applied in full load
- id str
- Result identifier
- last_modified_ strtime 
- Last modified time on target
- state str
- Current state of the table migration
- table_name str
- Name of the table
- total_changes_ floatapplied 
- Total number of applied changes
- cdcDelete StringCounter 
- Number of applied deletes
- cdcInsert StringCounter 
- Number of applied inserts
- cdcUpdate StringCounter 
- Number of applied updates
- dataErrors NumberCounter 
- Number of data errors occurred
- databaseName String
- Name of the database
- fullLoad StringEnded On 
- Full load end time
- fullLoad StringEst Finish Time 
- Estimate to finish full load
- fullLoad StringStarted On 
- Full load start time
- fullLoad NumberTotal Rows 
- Number of rows applied in full load
- id String
- Result identifier
- lastModified StringTime 
- Last modified time on target
- state String
- Current state of the table migration
- tableName String
- Name of the table
- totalChanges NumberApplied 
- Total number of applied changes
MigrateMySqlAzureDbForMySqlSyncTaskProperties, MigrateMySqlAzureDbForMySqlSyncTaskPropertiesArgs                      
- input Property Map
- Task input
MigrateMySqlAzureDbForMySqlSyncTaskPropertiesResponse, MigrateMySqlAzureDbForMySqlSyncTaskPropertiesResponseArgs                        
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate My Sql Azure Db For My Sql Sync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
MigrateMy Sql Azure Db For My Sql Sync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
MigrateMy Sql Azure Db For My Sql Sync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(MigrateMy Sql Azure Db For My Sql Sync Task Output Database Error Response | Migrate My Sql Azure Db For My Sql Sync Task Output Database Level Response | Migrate My Sql Azure Db For My Sql Sync Task Output Error Response | Migrate My Sql Azure Db For My Sql Sync Task Output Migration Level Response | Migrate My Sql Azure Db For My Sql Sync Task Output Table Level Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
MigrateMy Sql Azure Db For My Sql Sync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[MigrateMy Sql Azure Db For My Sql Sync Task Output Database Error Response, Migrate My Sql Azure Db For My Sql Sync Task Output Database Level Response, Migrate My Sql Azure Db For My Sql Sync Task Output Error Response, Migrate My Sql Azure Db For My Sql Sync Task Output Migration Level Response, Migrate My Sql Azure Db For My Sql Sync Task Output Table Level Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
MigrateMy Sql Azure Db For My Sql Sync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
MigratePostgreSqlAzureDbForPostgreSqlSyncDatabaseInput, MigratePostgreSqlAzureDbForPostgreSqlSyncDatabaseInputArgs                      
- MigrationSetting Dictionary<string, string>
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting Dictionary<string, string>
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting Dictionary<string, string>
- Target settings to tune target endpoint migration behavior
- MigrationSetting map[string]string
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting map[string]string
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting map[string]string
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String,String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String,String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String,String>
- Target settings to tune target endpoint migration behavior
- migrationSetting {[key: string]: string}
- Migration settings which tune the migration behavior
- name string
- Name of the database
- sourceSetting {[key: string]: string}
- Source settings to tune source endpoint migration behavior
- targetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting {[key: string]: string}
- Target settings to tune target endpoint migration behavior
- migration_setting Mapping[str, str]
- Migration settings which tune the migration behavior
- name str
- Name of the database
- source_setting Mapping[str, str]
- Source settings to tune source endpoint migration behavior
- target_database_ strname 
- Name of target database. Note: Target database will be truncated before starting migration.
- target_setting Mapping[str, str]
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String>
- Target settings to tune target endpoint migration behavior
MigratePostgreSqlAzureDbForPostgreSqlSyncDatabaseInputResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncDatabaseInputResponseArgs                        
- MigrationSetting Dictionary<string, string>
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting Dictionary<string, string>
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting Dictionary<string, string>
- Target settings to tune target endpoint migration behavior
- MigrationSetting map[string]string
- Migration settings which tune the migration behavior
- Name string
- Name of the database
- SourceSetting map[string]string
- Source settings to tune source endpoint migration behavior
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- TargetSetting map[string]string
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String,String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String,String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String,String>
- Target settings to tune target endpoint migration behavior
- migrationSetting {[key: string]: string}
- Migration settings which tune the migration behavior
- name string
- Name of the database
- sourceSetting {[key: string]: string}
- Source settings to tune source endpoint migration behavior
- targetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting {[key: string]: string}
- Target settings to tune target endpoint migration behavior
- migration_setting Mapping[str, str]
- Migration settings which tune the migration behavior
- name str
- Name of the database
- source_setting Mapping[str, str]
- Source settings to tune source endpoint migration behavior
- target_database_ strname 
- Name of target database. Note: Target database will be truncated before starting migration.
- target_setting Mapping[str, str]
- Target settings to tune target endpoint migration behavior
- migrationSetting Map<String>
- Migration settings which tune the migration behavior
- name String
- Name of the database
- sourceSetting Map<String>
- Source settings to tune source endpoint migration behavior
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- targetSetting Map<String>
- Target settings to tune target endpoint migration behavior
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskInput, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskInputArgs                      
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Postgre Sql Azure Db For Postgre Sql Sync Database Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info 
- Connection information for source PostgreSQL
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL
- SelectedDatabases []MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input 
- Databases to migrate
- SourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL
- TargetConnection PostgreInfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL
- selectedDatabases List<MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input> 
- Databases to migrate
- sourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL
- targetConnection PostgreInfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL
- selectedDatabases MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input[] 
- Databases to migrate
- sourceConnection PostgreInfo Sql Connection Info 
- Connection information for source PostgreSQL
- targetConnection PostgreInfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL
- selected_databases Sequence[MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input] 
- Databases to migrate
- source_connection_ Postgreinfo Sql Connection Info 
- Connection information for source PostgreSQL
- target_connection_ Postgreinfo Sql Connection Info 
- Connection information for target Azure Database for PostgreSQL
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source PostgreSQL
- targetConnection Property MapInfo 
- Connection information for target Azure Database for PostgreSQL
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskInputResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskInputResponseArgs                        
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Postgre Sql Azure Db For Postgre Sql Sync Database Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info Response 
- Connection information for source PostgreSQL
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Postgre Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL
- SelectedDatabases []MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input Response 
- Databases to migrate
- SourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL
- TargetConnection PostgreInfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL
- selectedDatabases List<MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input Response> 
- Databases to migrate
- sourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL
- targetConnection PostgreInfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL
- selectedDatabases MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input Response[] 
- Databases to migrate
- sourceConnection PostgreInfo Sql Connection Info Response 
- Connection information for source PostgreSQL
- targetConnection PostgreInfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL
- selected_databases Sequence[MigratePostgre Sql Azure Db For Postgre Sql Sync Database Input Response] 
- Databases to migrate
- source_connection_ Postgreinfo Sql Connection Info Response 
- Connection information for source PostgreSQL
- target_connection_ Postgreinfo Sql Connection Info Response 
- Connection information for target Azure Database for PostgreSQL
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source PostgreSQL
- targetConnection Property MapInfo 
- Connection information for target Azure Database for PostgreSQL
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseErrorResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseErrorResponseArgs                            
- Id string
- Result identifier
- ErrorMessage string
- Error message
- Events
List<Pulumi.Azure Native. Data Migration. Inputs. Sync Migration Database Error Event Response> 
- List of error events.
- Id string
- Result identifier
- ErrorMessage string
- Error message
- Events
[]SyncMigration Database Error Event Response 
- List of error events.
- id String
- Result identifier
- errorMessage String
- Error message
- events
List<SyncMigration Database Error Event Response> 
- List of error events.
- id string
- Result identifier
- errorMessage string
- Error message
- events
SyncMigration Database Error Event Response[] 
- List of error events.
- id str
- Result identifier
- error_message str
- Error message
- events
Sequence[SyncMigration Database Error Event Response] 
- List of error events.
- id String
- Result identifier
- errorMessage String
- Error message
- events List<Property Map>
- List of error events.
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevelResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputDatabaseLevelResponseArgs                            
- AppliedChanges double
- Number of applied changes
- CdcDelete doubleCounter 
- Number of cdc deletes
- CdcInsert doubleCounter 
- Number of cdc inserts
- CdcUpdate doubleCounter 
- Number of cdc updates
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- FullLoad doubleCompleted Tables 
- Number of tables completed in full load
- FullLoad doubleErrored Tables 
- Number of tables errored in full load
- FullLoad doubleLoading Tables 
- Number of tables loading in full load
- FullLoad doubleQueued Tables 
- Number of tables queued in full load
- Id string
- Result identifier
- IncomingChanges double
- Number of incoming changes
- InitializationCompleted bool
- Indicates if initial load (full load) has been completed
- Latency double
- CDC apply latency
- MigrationState string
- Migration state that this database is in
- StartedOn string
- Migration start time
- AppliedChanges float64
- Number of applied changes
- CdcDelete float64Counter 
- Number of cdc deletes
- CdcInsert float64Counter 
- Number of cdc inserts
- CdcUpdate float64Counter 
- Number of cdc updates
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- FullLoad float64Completed Tables 
- Number of tables completed in full load
- FullLoad float64Errored Tables 
- Number of tables errored in full load
- FullLoad float64Loading Tables 
- Number of tables loading in full load
- FullLoad float64Queued Tables 
- Number of tables queued in full load
- Id string
- Result identifier
- IncomingChanges float64
- Number of incoming changes
- InitializationCompleted bool
- Indicates if initial load (full load) has been completed
- Latency float64
- CDC apply latency
- MigrationState string
- Migration state that this database is in
- StartedOn string
- Migration start time
- appliedChanges Double
- Number of applied changes
- cdcDelete DoubleCounter 
- Number of cdc deletes
- cdcInsert DoubleCounter 
- Number of cdc inserts
- cdcUpdate DoubleCounter 
- Number of cdc updates
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- fullLoad DoubleCompleted Tables 
- Number of tables completed in full load
- fullLoad DoubleErrored Tables 
- Number of tables errored in full load
- fullLoad DoubleLoading Tables 
- Number of tables loading in full load
- fullLoad DoubleQueued Tables 
- Number of tables queued in full load
- id String
- Result identifier
- incomingChanges Double
- Number of incoming changes
- initializationCompleted Boolean
- Indicates if initial load (full load) has been completed
- latency Double
- CDC apply latency
- migrationState String
- Migration state that this database is in
- startedOn String
- Migration start time
- appliedChanges number
- Number of applied changes
- cdcDelete numberCounter 
- Number of cdc deletes
- cdcInsert numberCounter 
- Number of cdc inserts
- cdcUpdate numberCounter 
- Number of cdc updates
- databaseName string
- Name of the database
- endedOn string
- Migration end time
- fullLoad numberCompleted Tables 
- Number of tables completed in full load
- fullLoad numberErrored Tables 
- Number of tables errored in full load
- fullLoad numberLoading Tables 
- Number of tables loading in full load
- fullLoad numberQueued Tables 
- Number of tables queued in full load
- id string
- Result identifier
- incomingChanges number
- Number of incoming changes
- initializationCompleted boolean
- Indicates if initial load (full load) has been completed
- latency number
- CDC apply latency
- migrationState string
- Migration state that this database is in
- startedOn string
- Migration start time
- applied_changes float
- Number of applied changes
- cdc_delete_ floatcounter 
- Number of cdc deletes
- cdc_insert_ floatcounter 
- Number of cdc inserts
- cdc_update_ floatcounter 
- Number of cdc updates
- database_name str
- Name of the database
- ended_on str
- Migration end time
- full_load_ floatcompleted_ tables 
- Number of tables completed in full load
- full_load_ floaterrored_ tables 
- Number of tables errored in full load
- full_load_ floatloading_ tables 
- Number of tables loading in full load
- full_load_ floatqueued_ tables 
- Number of tables queued in full load
- id str
- Result identifier
- incoming_changes float
- Number of incoming changes
- initialization_completed bool
- Indicates if initial load (full load) has been completed
- latency float
- CDC apply latency
- migration_state str
- Migration state that this database is in
- started_on str
- Migration start time
- appliedChanges Number
- Number of applied changes
- cdcDelete NumberCounter 
- Number of cdc deletes
- cdcInsert NumberCounter 
- Number of cdc inserts
- cdcUpdate NumberCounter 
- Number of cdc updates
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- fullLoad NumberCompleted Tables 
- Number of tables completed in full load
- fullLoad NumberErrored Tables 
- Number of tables errored in full load
- fullLoad NumberLoading Tables 
- Number of tables loading in full load
- fullLoad NumberQueued Tables 
- Number of tables queued in full load
- id String
- Result identifier
- incomingChanges Number
- Number of incoming changes
- initializationCompleted Boolean
- Indicates if initial load (full load) has been completed
- latency Number
- CDC apply latency
- migrationState String
- Migration state that this database is in
- startedOn String
- Migration start time
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputErrorResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputErrorResponseArgs                          
- Error
Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response 
- Migration error
- Id string
- Result identifier
- Error
ReportableException Response 
- Migration error
- Id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id String
- Result identifier
- error
ReportableException Response 
- Migration error
- id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id str
- Result identifier
- error Property Map
- Migration error
- id String
- Result identifier
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevelResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputMigrationLevelResponseArgs                            
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer string
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- TargetServer string
- Target server name
- TargetServer stringVersion 
- Target server version
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer string
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- TargetServer string
- Target server name
- TargetServer stringVersion 
- Target server version
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer String
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- targetServer String
- Target server name
- targetServer StringVersion 
- Target server version
- endedOn string
- Migration end time
- id string
- Result identifier
- sourceServer string
- Source server name
- sourceServer stringVersion 
- Source server version
- startedOn string
- Migration start time
- targetServer string
- Target server name
- targetServer stringVersion 
- Target server version
- ended_on str
- Migration end time
- id str
- Result identifier
- source_server str
- Source server name
- source_server_ strversion 
- Source server version
- started_on str
- Migration start time
- target_server str
- Target server name
- target_server_ strversion 
- Target server version
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer String
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- targetServer String
- Target server name
- targetServer StringVersion 
- Target server version
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevelResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskOutputTableLevelResponseArgs                            
- CdcDelete doubleCounter 
- Number of applied deletes
- CdcInsert doubleCounter 
- Number of applied inserts
- CdcUpdate doubleCounter 
- Number of applied updates
- DataErrors doubleCounter 
- Number of data errors occurred
- DatabaseName string
- Name of the database
- FullLoad stringEnded On 
- Full load end time
- FullLoad stringEst Finish Time 
- Estimate to finish full load
- FullLoad stringStarted On 
- Full load start time
- FullLoad doubleTotal Rows 
- Number of rows applied in full load
- Id string
- Result identifier
- LastModified stringTime 
- Last modified time on target
- State string
- Current state of the table migration
- TableName string
- Name of the table
- TotalChanges doubleApplied 
- Total number of applied changes
- CdcDelete float64Counter 
- Number of applied deletes
- CdcInsert float64Counter 
- Number of applied inserts
- CdcUpdate float64Counter 
- Number of applied updates
- DataErrors float64Counter 
- Number of data errors occurred
- DatabaseName string
- Name of the database
- FullLoad stringEnded On 
- Full load end time
- FullLoad stringEst Finish Time 
- Estimate to finish full load
- FullLoad stringStarted On 
- Full load start time
- FullLoad float64Total Rows 
- Number of rows applied in full load
- Id string
- Result identifier
- LastModified stringTime 
- Last modified time on target
- State string
- Current state of the table migration
- TableName string
- Name of the table
- TotalChanges float64Applied 
- Total number of applied changes
- cdcDelete DoubleCounter 
- Number of applied deletes
- cdcInsert DoubleCounter 
- Number of applied inserts
- cdcUpdate DoubleCounter 
- Number of applied updates
- dataErrors DoubleCounter 
- Number of data errors occurred
- databaseName String
- Name of the database
- fullLoad StringEnded On 
- Full load end time
- fullLoad StringEst Finish Time 
- Estimate to finish full load
- fullLoad StringStarted On 
- Full load start time
- fullLoad DoubleTotal Rows 
- Number of rows applied in full load
- id String
- Result identifier
- lastModified StringTime 
- Last modified time on target
- state String
- Current state of the table migration
- tableName String
- Name of the table
- totalChanges DoubleApplied 
- Total number of applied changes
- cdcDelete numberCounter 
- Number of applied deletes
- cdcInsert numberCounter 
- Number of applied inserts
- cdcUpdate numberCounter 
- Number of applied updates
- dataErrors numberCounter 
- Number of data errors occurred
- databaseName string
- Name of the database
- fullLoad stringEnded On 
- Full load end time
- fullLoad stringEst Finish Time 
- Estimate to finish full load
- fullLoad stringStarted On 
- Full load start time
- fullLoad numberTotal Rows 
- Number of rows applied in full load
- id string
- Result identifier
- lastModified stringTime 
- Last modified time on target
- state string
- Current state of the table migration
- tableName string
- Name of the table
- totalChanges numberApplied 
- Total number of applied changes
- cdc_delete_ floatcounter 
- Number of applied deletes
- cdc_insert_ floatcounter 
- Number of applied inserts
- cdc_update_ floatcounter 
- Number of applied updates
- data_errors_ floatcounter 
- Number of data errors occurred
- database_name str
- Name of the database
- full_load_ strended_ on 
- Full load end time
- full_load_ strest_ finish_ time 
- Estimate to finish full load
- full_load_ strstarted_ on 
- Full load start time
- full_load_ floattotal_ rows 
- Number of rows applied in full load
- id str
- Result identifier
- last_modified_ strtime 
- Last modified time on target
- state str
- Current state of the table migration
- table_name str
- Name of the table
- total_changes_ floatapplied 
- Total number of applied changes
- cdcDelete NumberCounter 
- Number of applied deletes
- cdcInsert NumberCounter 
- Number of applied inserts
- cdcUpdate NumberCounter 
- Number of applied updates
- dataErrors NumberCounter 
- Number of data errors occurred
- databaseName String
- Name of the database
- fullLoad StringEnded On 
- Full load end time
- fullLoad StringEst Finish Time 
- Estimate to finish full load
- fullLoad StringStarted On 
- Full load start time
- fullLoad NumberTotal Rows 
- Number of rows applied in full load
- id String
- Result identifier
- lastModified StringTime 
- Last modified time on target
- state String
- Current state of the table migration
- tableName String
- Name of the table
- totalChanges NumberApplied 
- Total number of applied changes
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskProperties, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskPropertiesArgs                      
- input Property Map
- Task input
MigratePostgreSqlAzureDbForPostgreSqlSyncTaskPropertiesResponse, MigratePostgreSqlAzureDbForPostgreSqlSyncTaskPropertiesResponseArgs                        
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
MigratePostgre Sql Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
MigratePostgre Sql Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(MigratePostgre Sql Azure Db For Postgre Sql Sync Task Output Database Error Response | Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Database Level Response | Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Error Response | Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Migration Level Response | Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Table Level Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
MigratePostgre Sql Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[MigratePostgre Sql Azure Db For Postgre Sql Sync Task Output Database Error Response, Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Database Level Response, Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Error Response, Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Migration Level Response, Migrate Postgre Sql Azure Db For Postgre Sql Sync Task Output Table Level Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
MigratePostgre Sql Azure Db For Postgre Sql Sync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
MigrateSqlServerSqlDbDatabaseInput, MigrateSqlServerSqlDbDatabaseInputArgs              
- MakeSource boolDb Read Only 
- Whether to set database read only before migration
- Name string
- Name of the database
- TableMap Dictionary<string, string>
- Mapping of source to target tables
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- MakeSource boolDb Read Only 
- Whether to set database read only before migration
- Name string
- Name of the database
- TableMap map[string]string
- Mapping of source to target tables
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- makeSource BooleanDb Read Only 
- Whether to set database read only before migration
- name String
- Name of the database
- tableMap Map<String,String>
- Mapping of source to target tables
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- makeSource booleanDb Read Only 
- Whether to set database read only before migration
- name string
- Name of the database
- tableMap {[key: string]: string}
- Mapping of source to target tables
- targetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- make_source_ booldb_ read_ only 
- Whether to set database read only before migration
- name str
- Name of the database
- table_map Mapping[str, str]
- Mapping of source to target tables
- target_database_ strname 
- Name of target database. Note: Target database will be truncated before starting migration.
- makeSource BooleanDb Read Only 
- Whether to set database read only before migration
- name String
- Name of the database
- tableMap Map<String>
- Mapping of source to target tables
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
MigrateSqlServerSqlDbDatabaseInputResponse, MigrateSqlServerSqlDbDatabaseInputResponseArgs                
- MakeSource boolDb Read Only 
- Whether to set database read only before migration
- Name string
- Name of the database
- TableMap Dictionary<string, string>
- Mapping of source to target tables
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- MakeSource boolDb Read Only 
- Whether to set database read only before migration
- Name string
- Name of the database
- TableMap map[string]string
- Mapping of source to target tables
- TargetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- makeSource BooleanDb Read Only 
- Whether to set database read only before migration
- name String
- Name of the database
- tableMap Map<String,String>
- Mapping of source to target tables
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- makeSource booleanDb Read Only 
- Whether to set database read only before migration
- name string
- Name of the database
- tableMap {[key: string]: string}
- Mapping of source to target tables
- targetDatabase stringName 
- Name of target database. Note: Target database will be truncated before starting migration.
- make_source_ booldb_ read_ only 
- Whether to set database read only before migration
- name str
- Name of the database
- table_map Mapping[str, str]
- Mapping of source to target tables
- target_database_ strname 
- Name of target database. Note: Target database will be truncated before starting migration.
- makeSource BooleanDb Read Only 
- Whether to set database read only before migration
- name String
- Name of the database
- tableMap Map<String>
- Mapping of source to target tables
- targetDatabase StringName 
- Name of target database. Note: Target database will be truncated before starting migration.
MigrateSqlServerSqlDbSyncDatabaseInput, MigrateSqlServerSqlDbSyncDatabaseInputArgs                
- Id string
- Unique identifier for database
- MigrationSetting Dictionary<string, string>
- Migration settings which tune the migration behavior
- Name string
- Name of database
- SchemaName string
- Schema name to be migrated
- SourceSetting Dictionary<string, string>
- Source settings to tune source endpoint migration behavior
- TableMap Dictionary<string, string>
- Mapping of source to target tables
- TargetDatabase stringName 
- Target database name
- TargetSetting Dictionary<string, string>
- Target settings to tune target endpoint migration behavior
- Id string
- Unique identifier for database
- MigrationSetting map[string]string
- Migration settings which tune the migration behavior
- Name string
- Name of database
- SchemaName string
- Schema name to be migrated
- SourceSetting map[string]string
- Source settings to tune source endpoint migration behavior
- TableMap map[string]string
- Mapping of source to target tables
- TargetDatabase stringName 
- Target database name
- TargetSetting map[string]string
- Target settings to tune target endpoint migration behavior
- id String
- Unique identifier for database
- migrationSetting Map<String,String>
- Migration settings which tune the migration behavior
- name String
- Name of database
- schemaName String
- Schema name to be migrated
- sourceSetting Map<String,String>
- Source settings to tune source endpoint migration behavior
- tableMap Map<String,String>
- Mapping of source to target tables
- targetDatabase StringName 
- Target database name
- targetSetting Map<String,String>
- Target settings to tune target endpoint migration behavior
- id string
- Unique identifier for database
- migrationSetting {[key: string]: string}
- Migration settings which tune the migration behavior
- name string
- Name of database
- schemaName string
- Schema name to be migrated
- sourceSetting {[key: string]: string}
- Source settings to tune source endpoint migration behavior
- tableMap {[key: string]: string}
- Mapping of source to target tables
- targetDatabase stringName 
- Target database name
- targetSetting {[key: string]: string}
- Target settings to tune target endpoint migration behavior
- id str
- Unique identifier for database
- migration_setting Mapping[str, str]
- Migration settings which tune the migration behavior
- name str
- Name of database
- schema_name str
- Schema name to be migrated
- source_setting Mapping[str, str]
- Source settings to tune source endpoint migration behavior
- table_map Mapping[str, str]
- Mapping of source to target tables
- target_database_ strname 
- Target database name
- target_setting Mapping[str, str]
- Target settings to tune target endpoint migration behavior
- id String
- Unique identifier for database
- migrationSetting Map<String>
- Migration settings which tune the migration behavior
- name String
- Name of database
- schemaName String
- Schema name to be migrated
- sourceSetting Map<String>
- Source settings to tune source endpoint migration behavior
- tableMap Map<String>
- Mapping of source to target tables
- targetDatabase StringName 
- Target database name
- targetSetting Map<String>
- Target settings to tune target endpoint migration behavior
MigrateSqlServerSqlDbSyncDatabaseInputResponse, MigrateSqlServerSqlDbSyncDatabaseInputResponseArgs                  
- Id string
- Unique identifier for database
- MigrationSetting Dictionary<string, string>
- Migration settings which tune the migration behavior
- Name string
- Name of database
- SchemaName string
- Schema name to be migrated
- SourceSetting Dictionary<string, string>
- Source settings to tune source endpoint migration behavior
- TableMap Dictionary<string, string>
- Mapping of source to target tables
- TargetDatabase stringName 
- Target database name
- TargetSetting Dictionary<string, string>
- Target settings to tune target endpoint migration behavior
- Id string
- Unique identifier for database
- MigrationSetting map[string]string
- Migration settings which tune the migration behavior
- Name string
- Name of database
- SchemaName string
- Schema name to be migrated
- SourceSetting map[string]string
- Source settings to tune source endpoint migration behavior
- TableMap map[string]string
- Mapping of source to target tables
- TargetDatabase stringName 
- Target database name
- TargetSetting map[string]string
- Target settings to tune target endpoint migration behavior
- id String
- Unique identifier for database
- migrationSetting Map<String,String>
- Migration settings which tune the migration behavior
- name String
- Name of database
- schemaName String
- Schema name to be migrated
- sourceSetting Map<String,String>
- Source settings to tune source endpoint migration behavior
- tableMap Map<String,String>
- Mapping of source to target tables
- targetDatabase StringName 
- Target database name
- targetSetting Map<String,String>
- Target settings to tune target endpoint migration behavior
- id string
- Unique identifier for database
- migrationSetting {[key: string]: string}
- Migration settings which tune the migration behavior
- name string
- Name of database
- schemaName string
- Schema name to be migrated
- sourceSetting {[key: string]: string}
- Source settings to tune source endpoint migration behavior
- tableMap {[key: string]: string}
- Mapping of source to target tables
- targetDatabase stringName 
- Target database name
- targetSetting {[key: string]: string}
- Target settings to tune target endpoint migration behavior
- id str
- Unique identifier for database
- migration_setting Mapping[str, str]
- Migration settings which tune the migration behavior
- name str
- Name of database
- schema_name str
- Schema name to be migrated
- source_setting Mapping[str, str]
- Source settings to tune source endpoint migration behavior
- table_map Mapping[str, str]
- Mapping of source to target tables
- target_database_ strname 
- Target database name
- target_setting Mapping[str, str]
- Target settings to tune target endpoint migration behavior
- id String
- Unique identifier for database
- migrationSetting Map<String>
- Migration settings which tune the migration behavior
- name String
- Name of database
- schemaName String
- Schema name to be migrated
- sourceSetting Map<String>
- Source settings to tune source endpoint migration behavior
- tableMap Map<String>
- Mapping of source to target tables
- targetDatabase StringName 
- Target database name
- targetSetting Map<String>
- Target settings to tune target endpoint migration behavior
MigrateSqlServerSqlDbSyncTaskInput, MigrateSqlServerSqlDbSyncTaskInputArgs                
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Sync Database Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to target
- ValidationOptions Pulumi.Azure Native. Data Migration. Inputs. Migration Validation Options 
- Validation options
- SelectedDatabases []MigrateSql Server Sql Db Sync Database Input 
- Databases to migrate
- SourceConnection SqlInfo Connection Info 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info 
- Information for connecting to target
- ValidationOptions MigrationValidation Options 
- Validation options
- selectedDatabases List<MigrateSql Server Sql Db Sync Database Input> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- validationOptions MigrationValidation Options 
- Validation options
- selectedDatabases MigrateSql Server Sql Db Sync Database Input[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- validationOptions MigrationValidation Options 
- Validation options
- selected_databases Sequence[MigrateSql Server Sql Db Sync Database Input] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info 
- Information for connecting to target
- validation_options MigrationValidation Options 
- Validation options
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- validationOptions Property Map
- Validation options
MigrateSqlServerSqlDbSyncTaskInputResponse, MigrateSqlServerSqlDbSyncTaskInputResponseArgs                  
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Sync Database Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to target
- ValidationOptions Pulumi.Azure Native. Data Migration. Inputs. Migration Validation Options Response 
- Validation options
- SelectedDatabases []MigrateSql Server Sql Db Sync Database Input Response 
- Databases to migrate
- SourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- ValidationOptions MigrationValidation Options Response 
- Validation options
- selectedDatabases List<MigrateSql Server Sql Db Sync Database Input Response> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- validationOptions MigrationValidation Options Response 
- Validation options
- selectedDatabases MigrateSql Server Sql Db Sync Database Input Response[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- validationOptions MigrationValidation Options Response 
- Validation options
- selected_databases Sequence[MigrateSql Server Sql Db Sync Database Input Response] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info Response 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info Response 
- Information for connecting to target
- validation_options MigrationValidation Options Response 
- Validation options
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- validationOptions Property Map
- Validation options
MigrateSqlServerSqlDbSyncTaskOutputDatabaseErrorResponse, MigrateSqlServerSqlDbSyncTaskOutputDatabaseErrorResponseArgs                      
- Id string
- Result identifier
- ErrorMessage string
- Error message
- Events
List<Pulumi.Azure Native. Data Migration. Inputs. Sync Migration Database Error Event Response> 
- List of error events.
- Id string
- Result identifier
- ErrorMessage string
- Error message
- Events
[]SyncMigration Database Error Event Response 
- List of error events.
- id String
- Result identifier
- errorMessage String
- Error message
- events
List<SyncMigration Database Error Event Response> 
- List of error events.
- id string
- Result identifier
- errorMessage string
- Error message
- events
SyncMigration Database Error Event Response[] 
- List of error events.
- id str
- Result identifier
- error_message str
- Error message
- events
Sequence[SyncMigration Database Error Event Response] 
- List of error events.
- id String
- Result identifier
- errorMessage String
- Error message
- events List<Property Map>
- List of error events.
MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevelResponse, MigrateSqlServerSqlDbSyncTaskOutputDatabaseLevelResponseArgs                      
- AppliedChanges double
- Number of applied changes
- CdcDelete doubleCounter 
- Number of cdc deletes
- CdcInsert doubleCounter 
- Number of cdc inserts
- CdcUpdate doubleCounter 
- Number of cdc updates
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- FullLoad doubleCompleted Tables 
- Number of tables completed in full load
- FullLoad doubleErrored Tables 
- Number of tables errored in full load
- FullLoad doubleLoading Tables 
- Number of tables loading in full load
- FullLoad doubleQueued Tables 
- Number of tables queued in full load
- Id string
- Result identifier
- IncomingChanges double
- Number of incoming changes
- InitializationCompleted bool
- Indicates if initial load (full load) has been completed
- Latency double
- CDC apply latency
- MigrationState string
- Migration state that this database is in
- StartedOn string
- Migration start time
- AppliedChanges float64
- Number of applied changes
- CdcDelete float64Counter 
- Number of cdc deletes
- CdcInsert float64Counter 
- Number of cdc inserts
- CdcUpdate float64Counter 
- Number of cdc updates
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- FullLoad float64Completed Tables 
- Number of tables completed in full load
- FullLoad float64Errored Tables 
- Number of tables errored in full load
- FullLoad float64Loading Tables 
- Number of tables loading in full load
- FullLoad float64Queued Tables 
- Number of tables queued in full load
- Id string
- Result identifier
- IncomingChanges float64
- Number of incoming changes
- InitializationCompleted bool
- Indicates if initial load (full load) has been completed
- Latency float64
- CDC apply latency
- MigrationState string
- Migration state that this database is in
- StartedOn string
- Migration start time
- appliedChanges Double
- Number of applied changes
- cdcDelete DoubleCounter 
- Number of cdc deletes
- cdcInsert DoubleCounter 
- Number of cdc inserts
- cdcUpdate DoubleCounter 
- Number of cdc updates
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- fullLoad DoubleCompleted Tables 
- Number of tables completed in full load
- fullLoad DoubleErrored Tables 
- Number of tables errored in full load
- fullLoad DoubleLoading Tables 
- Number of tables loading in full load
- fullLoad DoubleQueued Tables 
- Number of tables queued in full load
- id String
- Result identifier
- incomingChanges Double
- Number of incoming changes
- initializationCompleted Boolean
- Indicates if initial load (full load) has been completed
- latency Double
- CDC apply latency
- migrationState String
- Migration state that this database is in
- startedOn String
- Migration start time
- appliedChanges number
- Number of applied changes
- cdcDelete numberCounter 
- Number of cdc deletes
- cdcInsert numberCounter 
- Number of cdc inserts
- cdcUpdate numberCounter 
- Number of cdc updates
- databaseName string
- Name of the database
- endedOn string
- Migration end time
- fullLoad numberCompleted Tables 
- Number of tables completed in full load
- fullLoad numberErrored Tables 
- Number of tables errored in full load
- fullLoad numberLoading Tables 
- Number of tables loading in full load
- fullLoad numberQueued Tables 
- Number of tables queued in full load
- id string
- Result identifier
- incomingChanges number
- Number of incoming changes
- initializationCompleted boolean
- Indicates if initial load (full load) has been completed
- latency number
- CDC apply latency
- migrationState string
- Migration state that this database is in
- startedOn string
- Migration start time
- applied_changes float
- Number of applied changes
- cdc_delete_ floatcounter 
- Number of cdc deletes
- cdc_insert_ floatcounter 
- Number of cdc inserts
- cdc_update_ floatcounter 
- Number of cdc updates
- database_name str
- Name of the database
- ended_on str
- Migration end time
- full_load_ floatcompleted_ tables 
- Number of tables completed in full load
- full_load_ floaterrored_ tables 
- Number of tables errored in full load
- full_load_ floatloading_ tables 
- Number of tables loading in full load
- full_load_ floatqueued_ tables 
- Number of tables queued in full load
- id str
- Result identifier
- incoming_changes float
- Number of incoming changes
- initialization_completed bool
- Indicates if initial load (full load) has been completed
- latency float
- CDC apply latency
- migration_state str
- Migration state that this database is in
- started_on str
- Migration start time
- appliedChanges Number
- Number of applied changes
- cdcDelete NumberCounter 
- Number of cdc deletes
- cdcInsert NumberCounter 
- Number of cdc inserts
- cdcUpdate NumberCounter 
- Number of cdc updates
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- fullLoad NumberCompleted Tables 
- Number of tables completed in full load
- fullLoad NumberErrored Tables 
- Number of tables errored in full load
- fullLoad NumberLoading Tables 
- Number of tables loading in full load
- fullLoad NumberQueued Tables 
- Number of tables queued in full load
- id String
- Result identifier
- incomingChanges Number
- Number of incoming changes
- initializationCompleted Boolean
- Indicates if initial load (full load) has been completed
- latency Number
- CDC apply latency
- migrationState String
- Migration state that this database is in
- startedOn String
- Migration start time
MigrateSqlServerSqlDbSyncTaskOutputErrorResponse, MigrateSqlServerSqlDbSyncTaskOutputErrorResponseArgs                    
- Error
Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response 
- Migration error
- Id string
- Result identifier
- Error
ReportableException Response 
- Migration error
- Id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id String
- Result identifier
- error
ReportableException Response 
- Migration error
- id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id str
- Result identifier
- error Property Map
- Migration error
- id String
- Result identifier
MigrateSqlServerSqlDbSyncTaskOutputMigrationLevelResponse, MigrateSqlServerSqlDbSyncTaskOutputMigrationLevelResponseArgs                      
- DatabaseCount int
- Count of databases
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer string
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- TargetServer string
- Target server name
- TargetServer stringVersion 
- Target server version
- DatabaseCount int
- Count of databases
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer string
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- TargetServer string
- Target server name
- TargetServer stringVersion 
- Target server version
- databaseCount Integer
- Count of databases
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer String
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- targetServer String
- Target server name
- targetServer StringVersion 
- Target server version
- databaseCount number
- Count of databases
- endedOn string
- Migration end time
- id string
- Result identifier
- sourceServer string
- Source server name
- sourceServer stringVersion 
- Source server version
- startedOn string
- Migration start time
- targetServer string
- Target server name
- targetServer stringVersion 
- Target server version
- database_count int
- Count of databases
- ended_on str
- Migration end time
- id str
- Result identifier
- source_server str
- Source server name
- source_server_ strversion 
- Source server version
- started_on str
- Migration start time
- target_server str
- Target server name
- target_server_ strversion 
- Target server version
- databaseCount Number
- Count of databases
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer String
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- targetServer String
- Target server name
- targetServer StringVersion 
- Target server version
MigrateSqlServerSqlDbSyncTaskOutputTableLevelResponse, MigrateSqlServerSqlDbSyncTaskOutputTableLevelResponseArgs                      
- CdcDelete doubleCounter 
- Number of applied deletes
- CdcInsert doubleCounter 
- Number of applied inserts
- CdcUpdate doubleCounter 
- Number of applied updates
- DataErrors doubleCounter 
- Number of data errors occurred
- DatabaseName string
- Name of the database
- FullLoad stringEnded On 
- Full load end time
- FullLoad stringEst Finish Time 
- Estimate to finish full load
- FullLoad stringStarted On 
- Full load start time
- FullLoad doubleTotal Rows 
- Number of rows applied in full load
- Id string
- Result identifier
- LastModified stringTime 
- Last modified time on target
- State string
- Current state of the table migration
- TableName string
- Name of the table
- TotalChanges doubleApplied 
- Total number of applied changes
- CdcDelete float64Counter 
- Number of applied deletes
- CdcInsert float64Counter 
- Number of applied inserts
- CdcUpdate float64Counter 
- Number of applied updates
- DataErrors float64Counter 
- Number of data errors occurred
- DatabaseName string
- Name of the database
- FullLoad stringEnded On 
- Full load end time
- FullLoad stringEst Finish Time 
- Estimate to finish full load
- FullLoad stringStarted On 
- Full load start time
- FullLoad float64Total Rows 
- Number of rows applied in full load
- Id string
- Result identifier
- LastModified stringTime 
- Last modified time on target
- State string
- Current state of the table migration
- TableName string
- Name of the table
- TotalChanges float64Applied 
- Total number of applied changes
- cdcDelete DoubleCounter 
- Number of applied deletes
- cdcInsert DoubleCounter 
- Number of applied inserts
- cdcUpdate DoubleCounter 
- Number of applied updates
- dataErrors DoubleCounter 
- Number of data errors occurred
- databaseName String
- Name of the database
- fullLoad StringEnded On 
- Full load end time
- fullLoad StringEst Finish Time 
- Estimate to finish full load
- fullLoad StringStarted On 
- Full load start time
- fullLoad DoubleTotal Rows 
- Number of rows applied in full load
- id String
- Result identifier
- lastModified StringTime 
- Last modified time on target
- state String
- Current state of the table migration
- tableName String
- Name of the table
- totalChanges DoubleApplied 
- Total number of applied changes
- cdcDelete numberCounter 
- Number of applied deletes
- cdcInsert numberCounter 
- Number of applied inserts
- cdcUpdate numberCounter 
- Number of applied updates
- dataErrors numberCounter 
- Number of data errors occurred
- databaseName string
- Name of the database
- fullLoad stringEnded On 
- Full load end time
- fullLoad stringEst Finish Time 
- Estimate to finish full load
- fullLoad stringStarted On 
- Full load start time
- fullLoad numberTotal Rows 
- Number of rows applied in full load
- id string
- Result identifier
- lastModified stringTime 
- Last modified time on target
- state string
- Current state of the table migration
- tableName string
- Name of the table
- totalChanges numberApplied 
- Total number of applied changes
- cdc_delete_ floatcounter 
- Number of applied deletes
- cdc_insert_ floatcounter 
- Number of applied inserts
- cdc_update_ floatcounter 
- Number of applied updates
- data_errors_ floatcounter 
- Number of data errors occurred
- database_name str
- Name of the database
- full_load_ strended_ on 
- Full load end time
- full_load_ strest_ finish_ time 
- Estimate to finish full load
- full_load_ strstarted_ on 
- Full load start time
- full_load_ floattotal_ rows 
- Number of rows applied in full load
- id str
- Result identifier
- last_modified_ strtime 
- Last modified time on target
- state str
- Current state of the table migration
- table_name str
- Name of the table
- total_changes_ floatapplied 
- Total number of applied changes
- cdcDelete NumberCounter 
- Number of applied deletes
- cdcInsert NumberCounter 
- Number of applied inserts
- cdcUpdate NumberCounter 
- Number of applied updates
- dataErrors NumberCounter 
- Number of data errors occurred
- databaseName String
- Name of the database
- fullLoad StringEnded On 
- Full load end time
- fullLoad StringEst Finish Time 
- Estimate to finish full load
- fullLoad StringStarted On 
- Full load start time
- fullLoad NumberTotal Rows 
- Number of rows applied in full load
- id String
- Result identifier
- lastModified StringTime 
- Last modified time on target
- state String
- Current state of the table migration
- tableName String
- Name of the table
- totalChanges NumberApplied 
- Total number of applied changes
MigrateSqlServerSqlDbSyncTaskProperties, MigrateSqlServerSqlDbSyncTaskPropertiesArgs                
- Input
MigrateSql Server Sql Db Sync Task Input 
- Task input
- input
MigrateSql Server Sql Db Sync Task Input 
- Task input
- input
MigrateSql Server Sql Db Sync Task Input 
- Task input
- input
MigrateSql Server Sql Db Sync Task Input 
- Task input
- input Property Map
- Task input
MigrateSqlServerSqlDbSyncTaskPropertiesResponse, MigrateSqlServerSqlDbSyncTaskPropertiesResponseArgs                  
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Sync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
MigrateSql Server Sql Db Sync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql Db Sync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(MigrateSql Server Sql Db Sync Task Output Database Error Response | Migrate Sql Server Sql Db Sync Task Output Database Level Response | Migrate Sql Server Sql Db Sync Task Output Error Response | Migrate Sql Server Sql Db Sync Task Output Migration Level Response | Migrate Sql Server Sql Db Sync Task Output Table Level Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql Db Sync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[MigrateSql Server Sql Db Sync Task Output Database Error Response, Migrate Sql Server Sql Db Sync Task Output Database Level Response, Migrate Sql Server Sql Db Sync Task Output Error Response, Migrate Sql Server Sql Db Sync Task Output Migration Level Response, Migrate Sql Server Sql Db Sync Task Output Table Level Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql Db Sync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
MigrateSqlServerSqlDbTaskInput, MigrateSqlServerSqlDbTaskInputArgs              
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Database Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to target
- ValidationOptions Pulumi.Azure Native. Data Migration. Inputs. Migration Validation Options 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- SelectedDatabases []MigrateSql Server Sql Db Database Input 
- Databases to migrate
- SourceConnection SqlInfo Connection Info 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info 
- Information for connecting to target
- ValidationOptions MigrationValidation Options 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selectedDatabases List<MigrateSql Server Sql Db Database Input> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- validationOptions MigrationValidation Options 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selectedDatabases MigrateSql Server Sql Db Database Input[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- validationOptions MigrationValidation Options 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selected_databases Sequence[MigrateSql Server Sql Db Database Input] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info 
- Information for connecting to target
- validation_options MigrationValidation Options 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- validationOptions Property Map
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
MigrateSqlServerSqlDbTaskInputResponse, MigrateSqlServerSqlDbTaskInputResponseArgs                
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Database Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to target
- ValidationOptions Pulumi.Azure Native. Data Migration. Inputs. Migration Validation Options Response 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- SelectedDatabases []MigrateSql Server Sql Db Database Input Response 
- Databases to migrate
- SourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- ValidationOptions MigrationValidation Options Response 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selectedDatabases List<MigrateSql Server Sql Db Database Input Response> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- validationOptions MigrationValidation Options Response 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selectedDatabases MigrateSql Server Sql Db Database Input Response[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- validationOptions MigrationValidation Options Response 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selected_databases Sequence[MigrateSql Server Sql Db Database Input Response] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info Response 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info Response 
- Information for connecting to target
- validation_options MigrationValidation Options Response 
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- validationOptions Property Map
- Options for enabling various post migration validations. Available options, 1.) Data Integrity Check: Performs a checksum based comparison on source and target tables after the migration to ensure the correctness of the data. 2.) Schema Validation: Performs a thorough schema comparison between the source and target tables and provides a list of differences between the source and target database, 3.) Query Analysis: Executes a set of queries picked up automatically either from the Query Plan Cache or Query Store and execute them and compares the execution time between the source and target database.
MigrateSqlServerSqlDbTaskOutputDatabaseLevelResponse, MigrateSqlServerSqlDbTaskOutputDatabaseLevelResponseArgs                    
- DatabaseName string
- Name of the item
- EndedOn string
- Migration end time
- ErrorCount double
- Number of database/object errors.
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Migration exceptions and warnings.
- Id string
- Result identifier
- Message string
- Migration progress message
- NumberOf doubleObjects 
- Number of objects
- NumberOf doubleObjects Completed 
- Number of successfully completed objects
- ObjectSummary Dictionary<string, Pulumi.Azure Native. Data Migration. Inputs. Data Item Migration Summary Result Response> 
- Summary of object results in the migration
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- Stage string
- Migration stage that this database is in
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- DatabaseName string
- Name of the item
- EndedOn string
- Migration end time
- ErrorCount float64
- Number of database/object errors.
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- ExceptionsAnd []ReportableWarnings Exception Response 
- Migration exceptions and warnings.
- Id string
- Result identifier
- Message string
- Migration progress message
- NumberOf float64Objects 
- Number of objects
- NumberOf float64Objects Completed 
- Number of successfully completed objects
- ObjectSummary map[string]DataItem Migration Summary Result Response 
- Summary of object results in the migration
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- Stage string
- Migration stage that this database is in
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- databaseName String
- Name of the item
- endedOn String
- Migration end time
- errorCount Double
- Number of database/object errors.
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Migration exceptions and warnings.
- id String
- Result identifier
- message String
- Migration progress message
- numberOf DoubleObjects 
- Number of objects
- numberOf DoubleObjects Completed 
- Number of successfully completed objects
- objectSummary Map<String,DataItem Migration Summary Result Response> 
- Summary of object results in the migration
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- stage String
- Migration stage that this database is in
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
- databaseName string
- Name of the item
- endedOn string
- Migration end time
- errorCount number
- Number of database/object errors.
- errorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- exceptionsAnd ReportableWarnings Exception Response[] 
- Migration exceptions and warnings.
- id string
- Result identifier
- message string
- Migration progress message
- numberOf numberObjects 
- Number of objects
- numberOf numberObjects Completed 
- Number of successfully completed objects
- objectSummary {[key: string]: DataItem Migration Summary Result Response} 
- Summary of object results in the migration
- resultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- stage string
- Migration stage that this database is in
- startedOn string
- Migration start time
- state string
- Current state of migration
- statusMessage string
- Status message
- database_name str
- Name of the item
- ended_on str
- Migration end time
- error_count float
- Number of database/object errors.
- error_prefix str
- Wildcard string prefix to use for querying all errors of the item
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Migration exceptions and warnings.
- id str
- Result identifier
- message str
- Migration progress message
- number_of_ floatobjects 
- Number of objects
- number_of_ floatobjects_ completed 
- Number of successfully completed objects
- object_summary Mapping[str, DataItem Migration Summary Result Response] 
- Summary of object results in the migration
- result_prefix str
- Wildcard string prefix to use for querying all sub-tem results of the item
- stage str
- Migration stage that this database is in
- started_on str
- Migration start time
- state str
- Current state of migration
- status_message str
- Status message
- databaseName String
- Name of the item
- endedOn String
- Migration end time
- errorCount Number
- Number of database/object errors.
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- exceptionsAnd List<Property Map>Warnings 
- Migration exceptions and warnings.
- id String
- Result identifier
- message String
- Migration progress message
- numberOf NumberObjects 
- Number of objects
- numberOf NumberObjects Completed 
- Number of successfully completed objects
- objectSummary Map<Property Map>
- Summary of object results in the migration
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- stage String
- Migration stage that this database is in
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResultResponse, MigrateSqlServerSqlDbTaskOutputDatabaseLevelValidationResultResponseArgs                        
- DataIntegrity Pulumi.Validation Result Azure Native. Data Migration. Inputs. Data Integrity Validation Result Response 
- Provides data integrity validation result between the source and target tables that are migrated.
- EndedOn string
- Validation end time
- Id string
- Result identifier
- MigrationId string
- Migration Identifier
- QueryAnalysis Pulumi.Validation Result Azure Native. Data Migration. Inputs. Query Analysis Validation Result Response 
- Results of some of the query execution result between source and target database
- SchemaValidation Pulumi.Result Azure Native. Data Migration. Inputs. Schema Comparison Validation Result Response 
- Provides schema comparison result between source and target database
- SourceDatabase stringName 
- Name of the source database
- StartedOn string
- Validation start time
- Status string
- Current status of validation at the database level
- TargetDatabase stringName 
- Name of the target database
- DataIntegrity DataValidation Result Integrity Validation Result Response 
- Provides data integrity validation result between the source and target tables that are migrated.
- EndedOn string
- Validation end time
- Id string
- Result identifier
- MigrationId string
- Migration Identifier
- QueryAnalysis QueryValidation Result Analysis Validation Result Response 
- Results of some of the query execution result between source and target database
- SchemaValidation SchemaResult Comparison Validation Result Response 
- Provides schema comparison result between source and target database
- SourceDatabase stringName 
- Name of the source database
- StartedOn string
- Validation start time
- Status string
- Current status of validation at the database level
- TargetDatabase stringName 
- Name of the target database
- dataIntegrity DataValidation Result Integrity Validation Result Response 
- Provides data integrity validation result between the source and target tables that are migrated.
- endedOn String
- Validation end time
- id String
- Result identifier
- migrationId String
- Migration Identifier
- queryAnalysis QueryValidation Result Analysis Validation Result Response 
- Results of some of the query execution result between source and target database
- schemaValidation SchemaResult Comparison Validation Result Response 
- Provides schema comparison result between source and target database
- sourceDatabase StringName 
- Name of the source database
- startedOn String
- Validation start time
- status String
- Current status of validation at the database level
- targetDatabase StringName 
- Name of the target database
- dataIntegrity DataValidation Result Integrity Validation Result Response 
- Provides data integrity validation result between the source and target tables that are migrated.
- endedOn string
- Validation end time
- id string
- Result identifier
- migrationId string
- Migration Identifier
- queryAnalysis QueryValidation Result Analysis Validation Result Response 
- Results of some of the query execution result between source and target database
- schemaValidation SchemaResult Comparison Validation Result Response 
- Provides schema comparison result between source and target database
- sourceDatabase stringName 
- Name of the source database
- startedOn string
- Validation start time
- status string
- Current status of validation at the database level
- targetDatabase stringName 
- Name of the target database
- data_integrity_ Datavalidation_ result Integrity Validation Result Response 
- Provides data integrity validation result between the source and target tables that are migrated.
- ended_on str
- Validation end time
- id str
- Result identifier
- migration_id str
- Migration Identifier
- query_analysis_ Queryvalidation_ result Analysis Validation Result Response 
- Results of some of the query execution result between source and target database
- schema_validation_ Schemaresult Comparison Validation Result Response 
- Provides schema comparison result between source and target database
- source_database_ strname 
- Name of the source database
- started_on str
- Validation start time
- status str
- Current status of validation at the database level
- target_database_ strname 
- Name of the target database
- dataIntegrity Property MapValidation Result 
- Provides data integrity validation result between the source and target tables that are migrated.
- endedOn String
- Validation end time
- id String
- Result identifier
- migrationId String
- Migration Identifier
- queryAnalysis Property MapValidation Result 
- Results of some of the query execution result between source and target database
- schemaValidation Property MapResult 
- Provides schema comparison result between source and target database
- sourceDatabase StringName 
- Name of the source database
- startedOn String
- Validation start time
- status String
- Current status of validation at the database level
- targetDatabase StringName 
- Name of the target database
MigrateSqlServerSqlDbTaskOutputErrorResponse, MigrateSqlServerSqlDbTaskOutputErrorResponseArgs                  
- Error
Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response 
- Migration error
- Id string
- Result identifier
- Error
ReportableException Response 
- Migration error
- Id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id String
- Result identifier
- error
ReportableException Response 
- Migration error
- id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id str
- Result identifier
- error Property Map
- Migration error
- id String
- Result identifier
MigrateSqlServerSqlDbTaskOutputMigrationLevelResponse, MigrateSqlServerSqlDbTaskOutputMigrationLevelResponseArgs                    
- DatabaseSummary Dictionary<string, Pulumi.Azure Native. Data Migration. Inputs. Database Summary Result Response> 
- Summary of database results in the migration
- Databases Dictionary<string, string>
- Selected databases as a map from database name to database id
- DurationIn doubleSeconds 
- Duration of task execution in seconds.
- EndedOn string
- Migration end time
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Migration exceptions and warnings.
- Id string
- Result identifier
- Message string
- Migration progress message
- MigrationReport Pulumi.Azure Native. Data Migration. Inputs. Migration Report Result Response 
- Migration Report Result, provides unique url for downloading your migration report.
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- Status string
- Current status of migration
- StatusMessage string
- Migration status message
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- DatabaseSummary map[string]DatabaseSummary Result Response 
- Summary of database results in the migration
- Databases map[string]string
- Selected databases as a map from database name to database id
- DurationIn float64Seconds 
- Duration of task execution in seconds.
- EndedOn string
- Migration end time
- ExceptionsAnd []ReportableWarnings Exception Response 
- Migration exceptions and warnings.
- Id string
- Result identifier
- Message string
- Migration progress message
- MigrationReport MigrationReport Result Response 
- Migration Report Result, provides unique url for downloading your migration report.
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- Status string
- Current status of migration
- StatusMessage string
- Migration status message
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- databaseSummary Map<String,DatabaseSummary Result Response> 
- Summary of database results in the migration
- databases Map<String,String>
- Selected databases as a map from database name to database id
- durationIn DoubleSeconds 
- Duration of task execution in seconds.
- endedOn String
- Migration end time
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Migration exceptions and warnings.
- id String
- Result identifier
- message String
- Migration progress message
- migrationReport MigrationReport Result Response 
- Migration Report Result, provides unique url for downloading your migration report.
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- status String
- Current status of migration
- statusMessage String
- Migration status message
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
- databaseSummary {[key: string]: DatabaseSummary Result Response} 
- Summary of database results in the migration
- databases {[key: string]: string}
- Selected databases as a map from database name to database id
- durationIn numberSeconds 
- Duration of task execution in seconds.
- endedOn string
- Migration end time
- exceptionsAnd ReportableWarnings Exception Response[] 
- Migration exceptions and warnings.
- id string
- Result identifier
- message string
- Migration progress message
- migrationReport MigrationReport Result Response 
- Migration Report Result, provides unique url for downloading your migration report.
- sourceServer stringBrand Version 
- Source server brand version
- sourceServer stringVersion 
- Source server version
- startedOn string
- Migration start time
- status string
- Current status of migration
- statusMessage string
- Migration status message
- targetServer stringBrand Version 
- Target server brand version
- targetServer stringVersion 
- Target server version
- database_summary Mapping[str, DatabaseSummary Result Response] 
- Summary of database results in the migration
- databases Mapping[str, str]
- Selected databases as a map from database name to database id
- duration_in_ floatseconds 
- Duration of task execution in seconds.
- ended_on str
- Migration end time
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Migration exceptions and warnings.
- id str
- Result identifier
- message str
- Migration progress message
- migration_report MigrationReport Result Response 
- Migration Report Result, provides unique url for downloading your migration report.
- source_server_ strbrand_ version 
- Source server brand version
- source_server_ strversion 
- Source server version
- started_on str
- Migration start time
- status str
- Current status of migration
- status_message str
- Migration status message
- target_server_ strbrand_ version 
- Target server brand version
- target_server_ strversion 
- Target server version
- databaseSummary Map<Property Map>
- Summary of database results in the migration
- databases Map<String>
- Selected databases as a map from database name to database id
- durationIn NumberSeconds 
- Duration of task execution in seconds.
- endedOn String
- Migration end time
- exceptionsAnd List<Property Map>Warnings 
- Migration exceptions and warnings.
- id String
- Result identifier
- message String
- Migration progress message
- migrationReport Property Map
- Migration Report Result, provides unique url for downloading your migration report.
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- status String
- Current status of migration
- statusMessage String
- Migration status message
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
MigrateSqlServerSqlDbTaskOutputTableLevelResponse, MigrateSqlServerSqlDbTaskOutputTableLevelResponseArgs                    
- EndedOn string
- Migration end time
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- Id string
- Result identifier
- ItemsCompleted doubleCount 
- Number of successfully completed items
- ItemsCount double
- Number of items
- ObjectName string
- Name of the item
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- EndedOn string
- Migration end time
- ErrorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- Id string
- Result identifier
- ItemsCompleted float64Count 
- Number of successfully completed items
- ItemsCount float64
- Number of items
- ObjectName string
- Name of the item
- ResultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- StartedOn string
- Migration start time
- State string
- Current state of migration
- StatusMessage string
- Status message
- endedOn String
- Migration end time
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- id String
- Result identifier
- itemsCompleted DoubleCount 
- Number of successfully completed items
- itemsCount Double
- Number of items
- objectName String
- Name of the item
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
- endedOn string
- Migration end time
- errorPrefix string
- Wildcard string prefix to use for querying all errors of the item
- id string
- Result identifier
- itemsCompleted numberCount 
- Number of successfully completed items
- itemsCount number
- Number of items
- objectName string
- Name of the item
- resultPrefix string
- Wildcard string prefix to use for querying all sub-tem results of the item
- startedOn string
- Migration start time
- state string
- Current state of migration
- statusMessage string
- Status message
- ended_on str
- Migration end time
- error_prefix str
- Wildcard string prefix to use for querying all errors of the item
- id str
- Result identifier
- items_completed_ floatcount 
- Number of successfully completed items
- items_count float
- Number of items
- object_name str
- Name of the item
- result_prefix str
- Wildcard string prefix to use for querying all sub-tem results of the item
- started_on str
- Migration start time
- state str
- Current state of migration
- status_message str
- Status message
- endedOn String
- Migration end time
- errorPrefix String
- Wildcard string prefix to use for querying all errors of the item
- id String
- Result identifier
- itemsCompleted NumberCount 
- Number of successfully completed items
- itemsCount Number
- Number of items
- objectName String
- Name of the item
- resultPrefix String
- Wildcard string prefix to use for querying all sub-tem results of the item
- startedOn String
- Migration start time
- state String
- Current state of migration
- statusMessage String
- Status message
MigrateSqlServerSqlDbTaskOutputValidationResultResponse, MigrateSqlServerSqlDbTaskOutputValidationResultResponseArgs                    
- Id string
- Result identifier
- MigrationId string
- Migration Identifier
- Status string
- Current status of validation at the migration level. Status from the database validation result status will be aggregated here.
- SummaryResults Dictionary<string, Pulumi.Azure Native. Data Migration. Inputs. Migration Validation Database Summary Result Response> 
- Validation summary results for each database
- Id string
- Result identifier
- MigrationId string
- Migration Identifier
- Status string
- Current status of validation at the migration level. Status from the database validation result status will be aggregated here.
- SummaryResults map[string]MigrationValidation Database Summary Result Response 
- Validation summary results for each database
- id String
- Result identifier
- migrationId String
- Migration Identifier
- status String
- Current status of validation at the migration level. Status from the database validation result status will be aggregated here.
- summaryResults Map<String,MigrationValidation Database Summary Result Response> 
- Validation summary results for each database
- id string
- Result identifier
- migrationId string
- Migration Identifier
- status string
- Current status of validation at the migration level. Status from the database validation result status will be aggregated here.
- summaryResults {[key: string]: MigrationValidation Database Summary Result Response} 
- Validation summary results for each database
- id str
- Result identifier
- migration_id str
- Migration Identifier
- status str
- Current status of validation at the migration level. Status from the database validation result status will be aggregated here.
- summary_results Mapping[str, MigrationValidation Database Summary Result Response] 
- Validation summary results for each database
- id String
- Result identifier
- migrationId String
- Migration Identifier
- status String
- Current status of validation at the migration level. Status from the database validation result status will be aggregated here.
- summaryResults Map<Property Map>
- Validation summary results for each database
MigrateSqlServerSqlDbTaskProperties, MigrateSqlServerSqlDbTaskPropertiesArgs              
- Input
MigrateSql Server Sql Db Task Input 
- Task input
- input
MigrateSql Server Sql Db Task Input 
- Task input
- input
MigrateSql Server Sql Db Task Input 
- Task input
- input
MigrateSql Server Sql Db Task Input 
- Task input
- input Property Map
- Task input
MigrateSqlServerSqlDbTaskPropertiesResponse, MigrateSqlServerSqlDbTaskPropertiesResponseArgs                
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
MigrateSql Server Sql Db Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql Db Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(MigrateSql Server Sql Db Task Output Database Level Response | Migrate Sql Server Sql Db Task Output Database Level Validation Result Response | Migrate Sql Server Sql Db Task Output Error Response | Migrate Sql Server Sql Db Task Output Migration Level Response | Migrate Sql Server Sql Db Task Output Table Level Response | Migrate Sql Server Sql Db Task Output Validation Result Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql Db Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[MigrateSql Server Sql Db Task Output Database Level Response, Migrate Sql Server Sql Db Task Output Database Level Validation Result Response, Migrate Sql Server Sql Db Task Output Error Response, Migrate Sql Server Sql Db Task Output Migration Level Response, Migrate Sql Server Sql Db Task Output Table Level Response, Migrate Sql Server Sql Db Task Output Validation Result Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql Db Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
MigrateSqlServerSqlMIDatabaseInput, MigrateSqlServerSqlMIDatabaseInputArgs            
- Name string
- Name of the database
- RestoreDatabase stringName 
- Name of the database at destination
- BackupFile List<string>Paths 
- The list of backup files to be used in case of existing backups.
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share 
- Backup file share information for backing up this database.
- Name string
- Name of the database
- RestoreDatabase stringName 
- Name of the database at destination
- BackupFile []stringPaths 
- The list of backup files to be used in case of existing backups.
- 
FileShare 
- Backup file share information for backing up this database.
- name String
- Name of the database
- restoreDatabase StringName 
- Name of the database at destination
- backupFile List<String>Paths 
- The list of backup files to be used in case of existing backups.
- 
FileShare 
- Backup file share information for backing up this database.
- name string
- Name of the database
- restoreDatabase stringName 
- Name of the database at destination
- backupFile string[]Paths 
- The list of backup files to be used in case of existing backups.
- 
FileShare 
- Backup file share information for backing up this database.
- name str
- Name of the database
- restore_database_ strname 
- Name of the database at destination
- backup_file_ Sequence[str]paths 
- The list of backup files to be used in case of existing backups.
- 
FileShare 
- Backup file share information for backing up this database.
- name String
- Name of the database
- restoreDatabase StringName 
- Name of the database at destination
- backupFile List<String>Paths 
- The list of backup files to be used in case of existing backups.
- Property Map
- Backup file share information for backing up this database.
MigrateSqlServerSqlMIDatabaseInputResponse, MigrateSqlServerSqlMIDatabaseInputResponseArgs              
- Name string
- Name of the database
- RestoreDatabase stringName 
- Name of the database at destination
- BackupFile List<string>Paths 
- The list of backup files to be used in case of existing backups.
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share Response 
- Backup file share information for backing up this database.
- Name string
- Name of the database
- RestoreDatabase stringName 
- Name of the database at destination
- BackupFile []stringPaths 
- The list of backup files to be used in case of existing backups.
- 
FileShare Response 
- Backup file share information for backing up this database.
- name String
- Name of the database
- restoreDatabase StringName 
- Name of the database at destination
- backupFile List<String>Paths 
- The list of backup files to be used in case of existing backups.
- 
FileShare Response 
- Backup file share information for backing up this database.
- name string
- Name of the database
- restoreDatabase stringName 
- Name of the database at destination
- backupFile string[]Paths 
- The list of backup files to be used in case of existing backups.
- 
FileShare Response 
- Backup file share information for backing up this database.
- name str
- Name of the database
- restore_database_ strname 
- Name of the database at destination
- backup_file_ Sequence[str]paths 
- The list of backup files to be used in case of existing backups.
- 
FileShare Response 
- Backup file share information for backing up this database.
- name String
- Name of the database
- restoreDatabase StringName 
- Name of the database at destination
- backupFile List<String>Paths 
- The list of backup files to be used in case of existing backups.
- Property Map
- Backup file share information for backing up this database.
MigrateSqlServerSqlMISyncTaskInput, MigrateSqlServerSqlMISyncTaskInputArgs              
- AzureApp Pulumi.Azure Native. Data Migration. Inputs. Azure Active Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Mi Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share 
- Backup file share information for all selected databases.
- AzureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input 
- Databases to migrate
- SourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases MigrateSql Server Sql MIDatabase Input[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- storageResource stringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azure_app AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info 
- Connection information for source SQL Server
- storage_resource_ strid 
- Fully qualified resourceId of storage
- target_connection_ Miinfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azureApp Property Map
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection Property MapInfo 
- Connection information for Azure SQL Database Managed Instance
- Property Map
- Backup file share information for all selected databases.
MigrateSqlServerSqlMISyncTaskInputResponse, MigrateSqlServerSqlMISyncTaskInputResponseArgs                
- AzureApp Pulumi.Azure Native. Data Migration. Inputs. Azure Active Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Mi Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share Response 
- Backup file share information for all selected databases.
- AzureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input Response 
- Databases to migrate
- SourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input Response> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases MigrateSql Server Sql MIDatabase Input Response[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- storageResource stringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azure_app AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input Response] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info Response 
- Connection information for source SQL Server
- storage_resource_ strid 
- Fully qualified resourceId of storage
- target_connection_ Miinfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azureApp Property Map
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection Property MapInfo 
- Connection information for Azure SQL Database Managed Instance
- Property Map
- Backup file share information for all selected databases.
MigrateSqlServerSqlMISyncTaskOutputDatabaseLevelResponse, MigrateSqlServerSqlMISyncTaskOutputDatabaseLevelResponseArgs                    
- ActiveBackup List<Pulumi.Sets Azure Native. Data Migration. Inputs. Backup Set Info Response> 
- Backup sets that are currently active (Either being uploaded or getting restored)
- ContainerName string
- Name of container created in the Azure Storage account where backups are copied to
- EndedOn string
- Database migration end time
- ErrorPrefix string
- prefix string to use for querying errors for this database
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Migration exceptions and warnings
- FullBackup Pulumi.Set Info Azure Native. Data Migration. Inputs. Backup Set Info Response 
- Details of full backup set
- Id string
- Result identifier
- IsFull boolBackup Restored 
- Whether full backup has been applied to the target database or not
- LastRestored Pulumi.Backup Set Info Azure Native. Data Migration. Inputs. Backup Set Info Response 
- Last applied backup set information
- MigrationState string
- Current state of database
- SourceDatabase stringName 
- Name of the database
- StartedOn string
- Database migration start time
- ActiveBackup []BackupSets Set Info Response 
- Backup sets that are currently active (Either being uploaded or getting restored)
- ContainerName string
- Name of container created in the Azure Storage account where backups are copied to
- EndedOn string
- Database migration end time
- ErrorPrefix string
- prefix string to use for querying errors for this database
- ExceptionsAnd []ReportableWarnings Exception Response 
- Migration exceptions and warnings
- FullBackup BackupSet Info Set Info Response 
- Details of full backup set
- Id string
- Result identifier
- IsFull boolBackup Restored 
- Whether full backup has been applied to the target database or not
- LastRestored BackupBackup Set Info Set Info Response 
- Last applied backup set information
- MigrationState string
- Current state of database
- SourceDatabase stringName 
- Name of the database
- StartedOn string
- Database migration start time
- activeBackup List<BackupSets Set Info Response> 
- Backup sets that are currently active (Either being uploaded or getting restored)
- containerName String
- Name of container created in the Azure Storage account where backups are copied to
- endedOn String
- Database migration end time
- errorPrefix String
- prefix string to use for querying errors for this database
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Migration exceptions and warnings
- fullBackup BackupSet Info Set Info Response 
- Details of full backup set
- id String
- Result identifier
- isFull BooleanBackup Restored 
- Whether full backup has been applied to the target database or not
- lastRestored BackupBackup Set Info Set Info Response 
- Last applied backup set information
- migrationState String
- Current state of database
- sourceDatabase StringName 
- Name of the database
- startedOn String
- Database migration start time
- activeBackup BackupSets Set Info Response[] 
- Backup sets that are currently active (Either being uploaded or getting restored)
- containerName string
- Name of container created in the Azure Storage account where backups are copied to
- endedOn string
- Database migration end time
- errorPrefix string
- prefix string to use for querying errors for this database
- exceptionsAnd ReportableWarnings Exception Response[] 
- Migration exceptions and warnings
- fullBackup BackupSet Info Set Info Response 
- Details of full backup set
- id string
- Result identifier
- isFull booleanBackup Restored 
- Whether full backup has been applied to the target database or not
- lastRestored BackupBackup Set Info Set Info Response 
- Last applied backup set information
- migrationState string
- Current state of database
- sourceDatabase stringName 
- Name of the database
- startedOn string
- Database migration start time
- active_backup_ Sequence[Backupsets Set Info Response] 
- Backup sets that are currently active (Either being uploaded or getting restored)
- container_name str
- Name of container created in the Azure Storage account where backups are copied to
- ended_on str
- Database migration end time
- error_prefix str
- prefix string to use for querying errors for this database
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Migration exceptions and warnings
- full_backup_ Backupset_ info Set Info Response 
- Details of full backup set
- id str
- Result identifier
- is_full_ boolbackup_ restored 
- Whether full backup has been applied to the target database or not
- last_restored_ Backupbackup_ set_ info Set Info Response 
- Last applied backup set information
- migration_state str
- Current state of database
- source_database_ strname 
- Name of the database
- started_on str
- Database migration start time
- activeBackup List<Property Map>Sets 
- Backup sets that are currently active (Either being uploaded or getting restored)
- containerName String
- Name of container created in the Azure Storage account where backups are copied to
- endedOn String
- Database migration end time
- errorPrefix String
- prefix string to use for querying errors for this database
- exceptionsAnd List<Property Map>Warnings 
- Migration exceptions and warnings
- fullBackup Property MapSet Info 
- Details of full backup set
- id String
- Result identifier
- isFull BooleanBackup Restored 
- Whether full backup has been applied to the target database or not
- lastRestored Property MapBackup Set Info 
- Last applied backup set information
- migrationState String
- Current state of database
- sourceDatabase StringName 
- Name of the database
- startedOn String
- Database migration start time
MigrateSqlServerSqlMISyncTaskOutputErrorResponse, MigrateSqlServerSqlMISyncTaskOutputErrorResponseArgs                  
- Error
Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response 
- Migration error
- Id string
- Result identifier
- Error
ReportableException Response 
- Migration error
- Id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id String
- Result identifier
- error
ReportableException Response 
- Migration error
- id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id str
- Result identifier
- error Property Map
- Migration error
- id String
- Result identifier
MigrateSqlServerSqlMISyncTaskOutputMigrationLevelResponse, MigrateSqlServerSqlMISyncTaskOutputMigrationLevelResponseArgs                    
- DatabaseCount int
- Count of databases
- DatabaseError intCount 
- Number of database level errors
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringName 
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- State string
- Current state of migration
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringName 
- Target server name
- TargetServer stringVersion 
- Target server version
- DatabaseCount int
- Count of databases
- DatabaseError intCount 
- Number of database level errors
- EndedOn string
- Migration end time
- Id string
- Result identifier
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringName 
- Source server name
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- State string
- Current state of migration
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringName 
- Target server name
- TargetServer stringVersion 
- Target server version
- databaseCount Integer
- Count of databases
- databaseError IntegerCount 
- Number of database level errors
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringName 
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- state String
- Current state of migration
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringName 
- Target server name
- targetServer StringVersion 
- Target server version
- databaseCount number
- Count of databases
- databaseError numberCount 
- Number of database level errors
- endedOn string
- Migration end time
- id string
- Result identifier
- sourceServer stringBrand Version 
- Source server brand version
- sourceServer stringName 
- Source server name
- sourceServer stringVersion 
- Source server version
- startedOn string
- Migration start time
- state string
- Current state of migration
- targetServer stringBrand Version 
- Target server brand version
- targetServer stringName 
- Target server name
- targetServer stringVersion 
- Target server version
- database_count int
- Count of databases
- database_error_ intcount 
- Number of database level errors
- ended_on str
- Migration end time
- id str
- Result identifier
- source_server_ strbrand_ version 
- Source server brand version
- source_server_ strname 
- Source server name
- source_server_ strversion 
- Source server version
- started_on str
- Migration start time
- state str
- Current state of migration
- target_server_ strbrand_ version 
- Target server brand version
- target_server_ strname 
- Target server name
- target_server_ strversion 
- Target server version
- databaseCount Number
- Count of databases
- databaseError NumberCount 
- Number of database level errors
- endedOn String
- Migration end time
- id String
- Result identifier
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringName 
- Source server name
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- state String
- Current state of migration
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringName 
- Target server name
- targetServer StringVersion 
- Target server version
MigrateSqlServerSqlMISyncTaskProperties, MigrateSqlServerSqlMISyncTaskPropertiesArgs              
- Input
MigrateSql Server Sql MISync Task Input 
- Task input
- input
MigrateSql Server Sql MISync Task Input 
- Task input
- input
MigrateSql Server Sql MISync Task Input 
- Task input
- input
MigrateSql Server Sql MISync Task Input 
- Task input
- input Property Map
- Task input
MigrateSqlServerSqlMISyncTaskPropertiesResponse, MigrateSqlServerSqlMISyncTaskPropertiesResponseArgs                
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MISync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
MigrateSql Server Sql MISync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql MISync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(MigrateSql Server Sql MISync Task Output Database Level Response | Migrate Sql Server Sql MISync Task Output Error Response | Migrate Sql Server Sql MISync Task Output Migration Level Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql MISync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[MigrateSql Server Sql MISync Task Output Database Level Response, Migrate Sql Server Sql MISync Task Output Error Response, Migrate Sql Server Sql MISync Task Output Migration Level Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql MISync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
MigrateSqlServerSqlMITaskInput, MigrateSqlServerSqlMITaskInputArgs            
- 
Pulumi.Azure Native. Data Migration. Inputs. Blob Share 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to target
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share 
- Backup file share information for all selected databases.
- BackupMode string | Pulumi.Azure Native. Data Migration. Backup Mode 
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- SelectedAgent List<string>Jobs 
- Agent Jobs to migrate.
- SelectedLogins List<string>
- Logins to migrate.
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input 
- Databases to migrate
- SourceConnection SqlInfo Connection Info 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- BackupMode string | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- SelectedAgent []stringJobs 
- Agent Jobs to migrate.
- SelectedLogins []string
- Logins to migrate.
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- backupMode String | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selectedAgent List<String>Jobs 
- Agent Jobs to migrate.
- selectedLogins List<String>
- Logins to migrate.
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases MigrateSql Server Sql MIDatabase Input[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- backupMode string | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selectedAgent string[]Jobs 
- Agent Jobs to migrate.
- selectedLogins string[]
- Logins to migrate.
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- backup_mode str | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selected_agent_ Sequence[str]jobs 
- Agent Jobs to migrate.
- selected_logins Sequence[str]
- Logins to migrate.
- Property Map
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- Property Map
- Backup file share information for all selected databases.
- backupMode String | "CreateBackup" | "Existing Backup" 
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selectedAgent List<String>Jobs 
- Agent Jobs to migrate.
- selectedLogins List<String>
- Logins to migrate.
MigrateSqlServerSqlMITaskInputResponse, MigrateSqlServerSqlMITaskInputResponseArgs              
- 
Pulumi.Azure Native. Data Migration. Inputs. Blob Share Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to target
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share Response 
- Backup file share information for all selected databases.
- BackupMode string
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- SelectedAgent List<string>Jobs 
- Agent Jobs to migrate.
- SelectedLogins List<string>
- Logins to migrate.
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input Response 
- Databases to migrate
- SourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- BackupMode string
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- SelectedAgent []stringJobs 
- Agent Jobs to migrate.
- SelectedLogins []string
- Logins to migrate.
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input Response> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- backupMode String
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selectedAgent List<String>Jobs 
- Agent Jobs to migrate.
- selectedLogins List<String>
- Logins to migrate.
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases MigrateSql Server Sql MIDatabase Input Response[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- backupMode string
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selectedAgent string[]Jobs 
- Agent Jobs to migrate.
- selectedLogins string[]
- Logins to migrate.
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input Response] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info Response 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- backup_mode str
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selected_agent_ Sequence[str]jobs 
- Agent Jobs to migrate.
- selected_logins Sequence[str]
- Logins to migrate.
- Property Map
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- Property Map
- Backup file share information for all selected databases.
- backupMode String
- Backup Mode to specify whether to use existing backup or create new backup. If using existing backups, backup file paths are required to be provided in selectedDatabases.
- selectedAgent List<String>Jobs 
- Agent Jobs to migrate.
- selectedLogins List<String>
- Logins to migrate.
MigrateSqlServerSqlMITaskOutputAgentJobLevelResponse, MigrateSqlServerSqlMITaskOutputAgentJobLevelResponseArgs                    
- EndedOn string
- Migration end time
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Migration errors and warnings per job
- Id string
- Result identifier
- IsEnabled bool
- The state of the original Agent Job.
- Message string
- Migration progress message
- Name string
- Agent Job name.
- StartedOn string
- Migration start time
- State string
- Current state of migration
- EndedOn string
- Migration end time
- ExceptionsAnd []ReportableWarnings Exception Response 
- Migration errors and warnings per job
- Id string
- Result identifier
- IsEnabled bool
- The state of the original Agent Job.
- Message string
- Migration progress message
- Name string
- Agent Job name.
- StartedOn string
- Migration start time
- State string
- Current state of migration
- endedOn String
- Migration end time
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Migration errors and warnings per job
- id String
- Result identifier
- isEnabled Boolean
- The state of the original Agent Job.
- message String
- Migration progress message
- name String
- Agent Job name.
- startedOn String
- Migration start time
- state String
- Current state of migration
- endedOn string
- Migration end time
- exceptionsAnd ReportableWarnings Exception Response[] 
- Migration errors and warnings per job
- id string
- Result identifier
- isEnabled boolean
- The state of the original Agent Job.
- message string
- Migration progress message
- name string
- Agent Job name.
- startedOn string
- Migration start time
- state string
- Current state of migration
- ended_on str
- Migration end time
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Migration errors and warnings per job
- id str
- Result identifier
- is_enabled bool
- The state of the original Agent Job.
- message str
- Migration progress message
- name str
- Agent Job name.
- started_on str
- Migration start time
- state str
- Current state of migration
- endedOn String
- Migration end time
- exceptionsAnd List<Property Map>Warnings 
- Migration errors and warnings per job
- id String
- Result identifier
- isEnabled Boolean
- The state of the original Agent Job.
- message String
- Migration progress message
- name String
- Agent Job name.
- startedOn String
- Migration start time
- state String
- Current state of migration
MigrateSqlServerSqlMITaskOutputDatabaseLevelResponse, MigrateSqlServerSqlMITaskOutputDatabaseLevelResponseArgs                  
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Migration exceptions and warnings
- Id string
- Result identifier
- Message string
- Migration progress message
- SizeMB double
- Size of the database in megabytes
- Stage string
- Current stage of migration
- StartedOn string
- Migration start time
- State string
- Current state of migration
- DatabaseName string
- Name of the database
- EndedOn string
- Migration end time
- ExceptionsAnd []ReportableWarnings Exception Response 
- Migration exceptions and warnings
- Id string
- Result identifier
- Message string
- Migration progress message
- SizeMB float64
- Size of the database in megabytes
- Stage string
- Current stage of migration
- StartedOn string
- Migration start time
- State string
- Current state of migration
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Migration exceptions and warnings
- id String
- Result identifier
- message String
- Migration progress message
- sizeMB Double
- Size of the database in megabytes
- stage String
- Current stage of migration
- startedOn String
- Migration start time
- state String
- Current state of migration
- databaseName string
- Name of the database
- endedOn string
- Migration end time
- exceptionsAnd ReportableWarnings Exception Response[] 
- Migration exceptions and warnings
- id string
- Result identifier
- message string
- Migration progress message
- sizeMB number
- Size of the database in megabytes
- stage string
- Current stage of migration
- startedOn string
- Migration start time
- state string
- Current state of migration
- database_name str
- Name of the database
- ended_on str
- Migration end time
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Migration exceptions and warnings
- id str
- Result identifier
- message str
- Migration progress message
- size_mb float
- Size of the database in megabytes
- stage str
- Current stage of migration
- started_on str
- Migration start time
- state str
- Current state of migration
- databaseName String
- Name of the database
- endedOn String
- Migration end time
- exceptionsAnd List<Property Map>Warnings 
- Migration exceptions and warnings
- id String
- Result identifier
- message String
- Migration progress message
- sizeMB Number
- Size of the database in megabytes
- stage String
- Current stage of migration
- startedOn String
- Migration start time
- state String
- Current state of migration
MigrateSqlServerSqlMITaskOutputErrorResponse, MigrateSqlServerSqlMITaskOutputErrorResponseArgs                
- Error
Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response 
- Migration error
- Id string
- Result identifier
- Error
ReportableException Response 
- Migration error
- Id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id String
- Result identifier
- error
ReportableException Response 
- Migration error
- id string
- Result identifier
- error
ReportableException Response 
- Migration error
- id str
- Result identifier
- error Property Map
- Migration error
- id String
- Result identifier
MigrateSqlServerSqlMITaskOutputLoginLevelResponse, MigrateSqlServerSqlMITaskOutputLoginLevelResponseArgs                  
- EndedOn string
- Login migration end time
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Login migration errors and warnings per login
- Id string
- Result identifier
- LoginName string
- Login name.
- Message string
- Login migration progress message
- Stage string
- Current stage of login
- StartedOn string
- Login migration start time
- State string
- Current state of login
- EndedOn string
- Login migration end time
- ExceptionsAnd []ReportableWarnings Exception Response 
- Login migration errors and warnings per login
- Id string
- Result identifier
- LoginName string
- Login name.
- Message string
- Login migration progress message
- Stage string
- Current stage of login
- StartedOn string
- Login migration start time
- State string
- Current state of login
- endedOn String
- Login migration end time
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Login migration errors and warnings per login
- id String
- Result identifier
- loginName String
- Login name.
- message String
- Login migration progress message
- stage String
- Current stage of login
- startedOn String
- Login migration start time
- state String
- Current state of login
- endedOn string
- Login migration end time
- exceptionsAnd ReportableWarnings Exception Response[] 
- Login migration errors and warnings per login
- id string
- Result identifier
- loginName string
- Login name.
- message string
- Login migration progress message
- stage string
- Current stage of login
- startedOn string
- Login migration start time
- state string
- Current state of login
- ended_on str
- Login migration end time
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Login migration errors and warnings per login
- id str
- Result identifier
- login_name str
- Login name.
- message str
- Login migration progress message
- stage str
- Current stage of login
- started_on str
- Login migration start time
- state str
- Current state of login
- endedOn String
- Login migration end time
- exceptionsAnd List<Property Map>Warnings 
- Login migration errors and warnings per login
- id String
- Result identifier
- loginName String
- Login name.
- message String
- Login migration progress message
- stage String
- Current stage of login
- startedOn String
- Login migration start time
- state String
- Current state of login
MigrateSqlServerSqlMITaskOutputMigrationLevelResponse, MigrateSqlServerSqlMITaskOutputMigrationLevelResponseArgs                  
- AgentJobs Dictionary<string, string>
- Selected agent jobs as a map from name to id
- Databases Dictionary<string, string>
- Selected databases as a map from database name to database id
- EndedOn string
- Migration end time
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Migration exceptions and warnings.
- Id string
- Result identifier
- Logins Dictionary<string, string>
- Selected logins as a map from name to id
- Message string
- Migration progress message
- OrphanedUsers List<Pulumi.Info Azure Native. Data Migration. Inputs. Orphaned User Info Response> 
- List of orphaned users.
- ServerRole Dictionary<string, Pulumi.Results Azure Native. Data Migration. Inputs. Start Migration Scenario Server Role Result Response> 
- Map of server role migration results.
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- State string
- Current state of migration
- Status string
- Current status of migration
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- AgentJobs map[string]string
- Selected agent jobs as a map from name to id
- Databases map[string]string
- Selected databases as a map from database name to database id
- EndedOn string
- Migration end time
- ExceptionsAnd []ReportableWarnings Exception Response 
- Migration exceptions and warnings.
- Id string
- Result identifier
- Logins map[string]string
- Selected logins as a map from name to id
- Message string
- Migration progress message
- OrphanedUsers []OrphanedInfo User Info Response 
- List of orphaned users.
- ServerRole map[string]StartResults Migration Scenario Server Role Result Response 
- Map of server role migration results.
- SourceServer stringBrand Version 
- Source server brand version
- SourceServer stringVersion 
- Source server version
- StartedOn string
- Migration start time
- State string
- Current state of migration
- Status string
- Current status of migration
- TargetServer stringBrand Version 
- Target server brand version
- TargetServer stringVersion 
- Target server version
- agentJobs Map<String,String>
- Selected agent jobs as a map from name to id
- databases Map<String,String>
- Selected databases as a map from database name to database id
- endedOn String
- Migration end time
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Migration exceptions and warnings.
- id String
- Result identifier
- logins Map<String,String>
- Selected logins as a map from name to id
- message String
- Migration progress message
- orphanedUsers List<OrphanedInfo User Info Response> 
- List of orphaned users.
- serverRole Map<String,StartResults Migration Scenario Server Role Result Response> 
- Map of server role migration results.
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- state String
- Current state of migration
- status String
- Current status of migration
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
- agentJobs {[key: string]: string}
- Selected agent jobs as a map from name to id
- databases {[key: string]: string}
- Selected databases as a map from database name to database id
- endedOn string
- Migration end time
- exceptionsAnd ReportableWarnings Exception Response[] 
- Migration exceptions and warnings.
- id string
- Result identifier
- logins {[key: string]: string}
- Selected logins as a map from name to id
- message string
- Migration progress message
- orphanedUsers OrphanedInfo User Info Response[] 
- List of orphaned users.
- serverRole {[key: string]: StartResults Migration Scenario Server Role Result Response} 
- Map of server role migration results.
- sourceServer stringBrand Version 
- Source server brand version
- sourceServer stringVersion 
- Source server version
- startedOn string
- Migration start time
- state string
- Current state of migration
- status string
- Current status of migration
- targetServer stringBrand Version 
- Target server brand version
- targetServer stringVersion 
- Target server version
- agent_jobs Mapping[str, str]
- Selected agent jobs as a map from name to id
- databases Mapping[str, str]
- Selected databases as a map from database name to database id
- ended_on str
- Migration end time
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Migration exceptions and warnings.
- id str
- Result identifier
- logins Mapping[str, str]
- Selected logins as a map from name to id
- message str
- Migration progress message
- orphaned_users_ Sequence[Orphanedinfo User Info Response] 
- List of orphaned users.
- server_role_ Mapping[str, Startresults Migration Scenario Server Role Result Response] 
- Map of server role migration results.
- source_server_ strbrand_ version 
- Source server brand version
- source_server_ strversion 
- Source server version
- started_on str
- Migration start time
- state str
- Current state of migration
- status str
- Current status of migration
- target_server_ strbrand_ version 
- Target server brand version
- target_server_ strversion 
- Target server version
- agentJobs Map<String>
- Selected agent jobs as a map from name to id
- databases Map<String>
- Selected databases as a map from database name to database id
- endedOn String
- Migration end time
- exceptionsAnd List<Property Map>Warnings 
- Migration exceptions and warnings.
- id String
- Result identifier
- logins Map<String>
- Selected logins as a map from name to id
- message String
- Migration progress message
- orphanedUsers List<Property Map>Info 
- List of orphaned users.
- serverRole Map<Property Map>Results 
- Map of server role migration results.
- sourceServer StringBrand Version 
- Source server brand version
- sourceServer StringVersion 
- Source server version
- startedOn String
- Migration start time
- state String
- Current state of migration
- status String
- Current status of migration
- targetServer StringBrand Version 
- Target server brand version
- targetServer StringVersion 
- Target server version
MigrateSqlServerSqlMITaskProperties, MigrateSqlServerSqlMITaskPropertiesArgs            
- Input
MigrateSql Server Sql MITask Input 
- Task input
- input
MigrateSql Server Sql MITask Input 
- Task input
- input
MigrateSql Server Sql MITask Input 
- Task input
- input
MigrateSql Server Sql MITask Input 
- Task input
- input Property Map
- Task input
MigrateSqlServerSqlMITaskPropertiesResponse, MigrateSqlServerSqlMITaskPropertiesResponseArgs              
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output List<object>
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MITask Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output []interface{}
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
MigrateSql Server Sql MITask Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output List<Object>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql MITask Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
(MigrateSql Server Sql MITask Output Agent Job Level Response | Migrate Sql Server Sql MITask Output Database Level Response | Migrate Sql Server Sql MITask Output Error Response | Migrate Sql Server Sql MITask Output Login Level Response | Migrate Sql Server Sql MITask Output Migration Level Response)[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql MITask Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[Union[MigrateSql Server Sql MITask Output Agent Job Level Response, Migrate Sql Server Sql MITask Output Database Level Response, Migrate Sql Server Sql MITask Output Error Response, Migrate Sql Server Sql MITask Output Login Level Response, Migrate Sql Server Sql MITask Output Migration Level Response]] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
MigrateSql Server Sql MITask Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map | Property Map | Property Map | Property Map | Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
MigrateSyncCompleteCommandInputResponse, MigrateSyncCompleteCommandInputResponseArgs            
- DatabaseName string
- Name of database
- CommitTime stringStamp 
- Time stamp to complete
- DatabaseName string
- Name of database
- CommitTime stringStamp 
- Time stamp to complete
- databaseName String
- Name of database
- commitTime StringStamp 
- Time stamp to complete
- databaseName string
- Name of database
- commitTime stringStamp 
- Time stamp to complete
- database_name str
- Name of database
- commit_time_ strstamp 
- Time stamp to complete
- databaseName String
- Name of database
- commitTime StringStamp 
- Time stamp to complete
MigrateSyncCompleteCommandOutputResponse, MigrateSyncCompleteCommandOutputResponseArgs            
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- List of errors that happened during the command execution
- Id string
- Result identifier
- Errors
[]ReportableException Response 
- List of errors that happened during the command execution
- Id string
- Result identifier
- errors
List<ReportableException Response> 
- List of errors that happened during the command execution
- id String
- Result identifier
- errors
ReportableException Response[] 
- List of errors that happened during the command execution
- id string
- Result identifier
- errors
Sequence[ReportableException Response] 
- List of errors that happened during the command execution
- id str
- Result identifier
- errors List<Property Map>
- List of errors that happened during the command execution
- id String
- Result identifier
MigrateSyncCompleteCommandPropertiesResponse, MigrateSyncCompleteCommandPropertiesResponseArgs            
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
Pulumi.Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Output Response 
- Command output. This is ignored if submitted.
- State string
- The state of the command. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Input Response 
- Command input
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
MigrateSync Complete Command Output Response 
- Command output. This is ignored if submitted.
- State string
- The state of the command. This is ignored if submitted.
- Input
MigrateSync Complete Command Input Response 
- Command input
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
MigrateSync Complete Command Output Response 
- Command output. This is ignored if submitted.
- state String
- The state of the command. This is ignored if submitted.
- input
MigrateSync Complete Command Input Response 
- Command input
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
MigrateSync Complete Command Output Response 
- Command output. This is ignored if submitted.
- state string
- The state of the command. This is ignored if submitted.
- input
MigrateSync Complete Command Input Response 
- Command input
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
MigrateSync Complete Command Output Response 
- Command output. This is ignored if submitted.
- state str
- The state of the command. This is ignored if submitted.
- input
MigrateSync Complete Command Input Response 
- Command input
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output Property Map
- Command output. This is ignored if submitted.
- state String
- The state of the command. This is ignored if submitted.
- input Property Map
- Command input
MigrationEligibilityInfoResponse, MigrationEligibilityInfoResponseArgs        
- IsEligible boolFor Migration 
- Whether object is eligible for migration or not.
- ValidationMessages List<string>
- Information about eligibility failure for the server object.
- IsEligible boolFor Migration 
- Whether object is eligible for migration or not.
- ValidationMessages []string
- Information about eligibility failure for the server object.
- isEligible BooleanFor Migration 
- Whether object is eligible for migration or not.
- validationMessages List<String>
- Information about eligibility failure for the server object.
- isEligible booleanFor Migration 
- Whether object is eligible for migration or not.
- validationMessages string[]
- Information about eligibility failure for the server object.
- is_eligible_ boolfor_ migration 
- Whether object is eligible for migration or not.
- validation_messages Sequence[str]
- Information about eligibility failure for the server object.
- isEligible BooleanFor Migration 
- Whether object is eligible for migration or not.
- validationMessages List<String>
- Information about eligibility failure for the server object.
MigrationReportResultResponse, MigrationReportResultResponseArgs        
- id str
- Migration validation result identifier
- report_url str
- The url of the report.
MigrationValidationDatabaseSummaryResultResponse, MigrationValidationDatabaseSummaryResultResponseArgs            
- EndedOn string
- Validation end time
- Id string
- Result identifier
- MigrationId string
- Migration Identifier
- SourceDatabase stringName 
- Name of the source database
- StartedOn string
- Validation start time
- Status string
- Current status of validation at the database level
- TargetDatabase stringName 
- Name of the target database
- EndedOn string
- Validation end time
- Id string
- Result identifier
- MigrationId string
- Migration Identifier
- SourceDatabase stringName 
- Name of the source database
- StartedOn string
- Validation start time
- Status string
- Current status of validation at the database level
- TargetDatabase stringName 
- Name of the target database
- endedOn String
- Validation end time
- id String
- Result identifier
- migrationId String
- Migration Identifier
- sourceDatabase StringName 
- Name of the source database
- startedOn String
- Validation start time
- status String
- Current status of validation at the database level
- targetDatabase StringName 
- Name of the target database
- endedOn string
- Validation end time
- id string
- Result identifier
- migrationId string
- Migration Identifier
- sourceDatabase stringName 
- Name of the source database
- startedOn string
- Validation start time
- status string
- Current status of validation at the database level
- targetDatabase stringName 
- Name of the target database
- ended_on str
- Validation end time
- id str
- Result identifier
- migration_id str
- Migration Identifier
- source_database_ strname 
- Name of the source database
- started_on str
- Validation start time
- status str
- Current status of validation at the database level
- target_database_ strname 
- Name of the target database
- endedOn String
- Validation end time
- id String
- Result identifier
- migrationId String
- Migration Identifier
- sourceDatabase StringName 
- Name of the source database
- startedOn String
- Validation start time
- status String
- Current status of validation at the database level
- targetDatabase StringName 
- Name of the target database
MigrationValidationOptions, MigrationValidationOptionsArgs      
- EnableData boolIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- EnableQuery boolAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- EnableSchema boolValidation 
- Allows to compare the schema information between source and target.
- EnableData boolIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- EnableQuery boolAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- EnableSchema boolValidation 
- Allows to compare the schema information between source and target.
- enableData BooleanIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enableQuery BooleanAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enableSchema BooleanValidation 
- Allows to compare the schema information between source and target.
- enableData booleanIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enableQuery booleanAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enableSchema booleanValidation 
- Allows to compare the schema information between source and target.
- enable_data_ boolintegrity_ validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enable_query_ boolanalysis_ validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enable_schema_ boolvalidation 
- Allows to compare the schema information between source and target.
- enableData BooleanIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enableQuery BooleanAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enableSchema BooleanValidation 
- Allows to compare the schema information between source and target.
MigrationValidationOptionsResponse, MigrationValidationOptionsResponseArgs        
- EnableData boolIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- EnableQuery boolAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- EnableSchema boolValidation 
- Allows to compare the schema information between source and target.
- EnableData boolIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- EnableQuery boolAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- EnableSchema boolValidation 
- Allows to compare the schema information between source and target.
- enableData BooleanIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enableQuery BooleanAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enableSchema BooleanValidation 
- Allows to compare the schema information between source and target.
- enableData booleanIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enableQuery booleanAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enableSchema booleanValidation 
- Allows to compare the schema information between source and target.
- enable_data_ boolintegrity_ validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enable_query_ boolanalysis_ validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enable_schema_ boolvalidation 
- Allows to compare the schema information between source and target.
- enableData BooleanIntegrity Validation 
- Allows to perform a checksum based data integrity validation between source and target for the selected database / tables .
- enableQuery BooleanAnalysis Validation 
- Allows to perform a quick and intelligent query analysis by retrieving queries from the source database and executes them in the target. The result will have execution statistics for executions in source and target databases for the extracted queries.
- enableSchema BooleanValidation 
- Allows to compare the schema information between source and target.
MySqlConnectionInfo, MySqlConnectionInfoArgs        
- Port int
- Port for Server
- ServerName string
- Name of the server
- Password string
- Password credential.
- UserName string
- User name
- Port int
- Port for Server
- ServerName string
- Name of the server
- Password string
- Password credential.
- UserName string
- User name
- port Integer
- Port for Server
- serverName String
- Name of the server
- password String
- Password credential.
- userName String
- User name
- port number
- Port for Server
- serverName string
- Name of the server
- password string
- Password credential.
- userName string
- User name
- port int
- Port for Server
- server_name str
- Name of the server
- password str
- Password credential.
- user_name str
- User name
- port Number
- Port for Server
- serverName String
- Name of the server
- password String
- Password credential.
- userName String
- User name
MySqlConnectionInfoResponse, MySqlConnectionInfoResponseArgs          
- Port int
- Port for Server
- ServerName string
- Name of the server
- Password string
- Password credential.
- UserName string
- User name
- Port int
- Port for Server
- ServerName string
- Name of the server
- Password string
- Password credential.
- UserName string
- User name
- port Integer
- Port for Server
- serverName String
- Name of the server
- password String
- Password credential.
- userName String
- User name
- port number
- Port for Server
- serverName string
- Name of the server
- password string
- Password credential.
- userName string
- User name
- port int
- Port for Server
- server_name str
- Name of the server
- password str
- Password credential.
- user_name str
- User name
- port Number
- Port for Server
- serverName String
- Name of the server
- password String
- Password credential.
- userName String
- User name
ODataErrorResponse, ODataErrorResponseArgs      
- Code string
- The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'
- Details
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Inner errors that caused this error
- Message string
- The human-readable description of the error
- Code string
- The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'
- Details
[]ODataError Response 
- Inner errors that caused this error
- Message string
- The human-readable description of the error
- code String
- The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'
- details
List<ODataError Response> 
- Inner errors that caused this error
- message String
- The human-readable description of the error
- code string
- The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'
- details
ODataError Response[] 
- Inner errors that caused this error
- message string
- The human-readable description of the error
- code str
- The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'
- details
Sequence[ODataError Response] 
- Inner errors that caused this error
- message str
- The human-readable description of the error
- code String
- The machine-readable description of the error, such as 'InvalidRequest' or 'InternalServerError'
- details List<Property Map>
- Inner errors that caused this error
- message String
- The human-readable description of the error
OrphanedUserInfoResponse, OrphanedUserInfoResponseArgs        
- DatabaseName string
- Parent database of the user
- Name string
- Name of the orphaned user
- DatabaseName string
- Parent database of the user
- Name string
- Name of the orphaned user
- databaseName String
- Parent database of the user
- name String
- Name of the orphaned user
- databaseName string
- Parent database of the user
- name string
- Name of the orphaned user
- database_name str
- Parent database of the user
- name str
- Name of the orphaned user
- databaseName String
- Parent database of the user
- name String
- Name of the orphaned user
PostgreSqlConnectionInfo, PostgreSqlConnectionInfoArgs        
- Port int
- Port for Server
- ServerName string
- Name of the server
- DatabaseName string
- Name of the database
- Password string
- Password credential.
- UserName string
- User name
- Port int
- Port for Server
- ServerName string
- Name of the server
- DatabaseName string
- Name of the database
- Password string
- Password credential.
- UserName string
- User name
- port Integer
- Port for Server
- serverName String
- Name of the server
- databaseName String
- Name of the database
- password String
- Password credential.
- userName String
- User name
- port number
- Port for Server
- serverName string
- Name of the server
- databaseName string
- Name of the database
- password string
- Password credential.
- userName string
- User name
- port int
- Port for Server
- server_name str
- Name of the server
- database_name str
- Name of the database
- password str
- Password credential.
- user_name str
- User name
- port Number
- Port for Server
- serverName String
- Name of the server
- databaseName String
- Name of the database
- password String
- Password credential.
- userName String
- User name
PostgreSqlConnectionInfoResponse, PostgreSqlConnectionInfoResponseArgs          
- Port int
- Port for Server
- ServerName string
- Name of the server
- DatabaseName string
- Name of the database
- Password string
- Password credential.
- UserName string
- User name
- Port int
- Port for Server
- ServerName string
- Name of the server
- DatabaseName string
- Name of the database
- Password string
- Password credential.
- UserName string
- User name
- port Integer
- Port for Server
- serverName String
- Name of the server
- databaseName String
- Name of the database
- password String
- Password credential.
- userName String
- User name
- port number
- Port for Server
- serverName string
- Name of the server
- databaseName string
- Name of the database
- password string
- Password credential.
- userName string
- User name
- port int
- Port for Server
- server_name str
- Name of the server
- database_name str
- Name of the database
- password str
- Password credential.
- user_name str
- User name
- port Number
- Port for Server
- serverName String
- Name of the server
- databaseName String
- Name of the database
- password String
- Password credential.
- userName String
- User name
QueryAnalysisValidationResultResponse, QueryAnalysisValidationResultResponseArgs          
- QueryResults Pulumi.Azure Native. Data Migration. Inputs. Query Execution Result Response 
- List of queries executed and it's execution results in source and target
- ValidationErrors Pulumi.Azure Native. Data Migration. Inputs. Validation Error Response 
- Errors that are part of the execution
- QueryResults QueryExecution Result Response 
- List of queries executed and it's execution results in source and target
- ValidationErrors ValidationError Response 
- Errors that are part of the execution
- queryResults QueryExecution Result Response 
- List of queries executed and it's execution results in source and target
- validationErrors ValidationError Response 
- Errors that are part of the execution
- queryResults QueryExecution Result Response 
- List of queries executed and it's execution results in source and target
- validationErrors ValidationError Response 
- Errors that are part of the execution
- query_results QueryExecution Result Response 
- List of queries executed and it's execution results in source and target
- validation_errors ValidationError Response 
- Errors that are part of the execution
- queryResults Property Map
- List of queries executed and it's execution results in source and target
- validationErrors Property Map
- Errors that are part of the execution
QueryExecutionResultResponse, QueryExecutionResultResponseArgs        
- QueryText string
- Query text retrieved from the source server
- SourceResult Pulumi.Azure Native. Data Migration. Inputs. Execution Statistics Response 
- Query analysis result from the source
- StatementsIn doubleBatch 
- Total no. of statements in the batch
- TargetResult Pulumi.Azure Native. Data Migration. Inputs. Execution Statistics Response 
- Query analysis result from the target
- QueryText string
- Query text retrieved from the source server
- SourceResult ExecutionStatistics Response 
- Query analysis result from the source
- StatementsIn float64Batch 
- Total no. of statements in the batch
- TargetResult ExecutionStatistics Response 
- Query analysis result from the target
- queryText String
- Query text retrieved from the source server
- sourceResult ExecutionStatistics Response 
- Query analysis result from the source
- statementsIn DoubleBatch 
- Total no. of statements in the batch
- targetResult ExecutionStatistics Response 
- Query analysis result from the target
- queryText string
- Query text retrieved from the source server
- sourceResult ExecutionStatistics Response 
- Query analysis result from the source
- statementsIn numberBatch 
- Total no. of statements in the batch
- targetResult ExecutionStatistics Response 
- Query analysis result from the target
- query_text str
- Query text retrieved from the source server
- source_result ExecutionStatistics Response 
- Query analysis result from the source
- statements_in_ floatbatch 
- Total no. of statements in the batch
- target_result ExecutionStatistics Response 
- Query analysis result from the target
- queryText String
- Query text retrieved from the source server
- sourceResult Property Map
- Query analysis result from the source
- statementsIn NumberBatch 
- Total no. of statements in the batch
- targetResult Property Map
- Query analysis result from the target
ReportableExceptionResponse, ReportableExceptionResponseArgs      
- FilePath string
- The path to the file where exception occurred
- HResult int
- Coded numerical value that is assigned to a specific exception
- LineNumber string
- The line number where exception occurred
- Message string
- Error message
- StackTrace string
- Stack trace
- ActionableMessage string
- Actionable steps for this exception
- FilePath string
- The path to the file where exception occurred
- HResult int
- Coded numerical value that is assigned to a specific exception
- LineNumber string
- The line number where exception occurred
- Message string
- Error message
- StackTrace string
- Stack trace
- ActionableMessage string
- Actionable steps for this exception
- filePath String
- The path to the file where exception occurred
- hResult Integer
- Coded numerical value that is assigned to a specific exception
- lineNumber String
- The line number where exception occurred
- message String
- Error message
- stackTrace String
- Stack trace
- actionableMessage String
- Actionable steps for this exception
- filePath string
- The path to the file where exception occurred
- hResult number
- Coded numerical value that is assigned to a specific exception
- lineNumber string
- The line number where exception occurred
- message string
- Error message
- stackTrace string
- Stack trace
- actionableMessage string
- Actionable steps for this exception
- file_path str
- The path to the file where exception occurred
- h_result int
- Coded numerical value that is assigned to a specific exception
- line_number str
- The line number where exception occurred
- message str
- Error message
- stack_trace str
- Stack trace
- actionable_message str
- Actionable steps for this exception
- filePath String
- The path to the file where exception occurred
- hResult Number
- Coded numerical value that is assigned to a specific exception
- lineNumber String
- The line number where exception occurred
- message String
- Error message
- stackTrace String
- Stack trace
- actionableMessage String
- Actionable steps for this exception
SchemaComparisonValidationResultResponse, SchemaComparisonValidationResultResponseArgs          
- SchemaDifferences Pulumi.Azure Native. Data Migration. Inputs. Schema Comparison Validation Result Type Response 
- List of schema differences between the source and target databases
- ValidationErrors Pulumi.Azure Native. Data Migration. Inputs. Validation Error Response 
- List of errors that happened while performing schema compare validation
- SourceDatabase Dictionary<string, double>Object Count 
- Count of source database objects
- TargetDatabase Dictionary<string, double>Object Count 
- Count of target database objects
- SchemaDifferences SchemaComparison Validation Result Type Response 
- List of schema differences between the source and target databases
- ValidationErrors ValidationError Response 
- List of errors that happened while performing schema compare validation
- SourceDatabase map[string]float64Object Count 
- Count of source database objects
- TargetDatabase map[string]float64Object Count 
- Count of target database objects
- schemaDifferences SchemaComparison Validation Result Type Response 
- List of schema differences between the source and target databases
- validationErrors ValidationError Response 
- List of errors that happened while performing schema compare validation
- sourceDatabase Map<String,Double>Object Count 
- Count of source database objects
- targetDatabase Map<String,Double>Object Count 
- Count of target database objects
- schemaDifferences SchemaComparison Validation Result Type Response 
- List of schema differences between the source and target databases
- validationErrors ValidationError Response 
- List of errors that happened while performing schema compare validation
- sourceDatabase {[key: string]: number}Object Count 
- Count of source database objects
- targetDatabase {[key: string]: number}Object Count 
- Count of target database objects
- schema_differences SchemaComparison Validation Result Type Response 
- List of schema differences between the source and target databases
- validation_errors ValidationError Response 
- List of errors that happened while performing schema compare validation
- source_database_ Mapping[str, float]object_ count 
- Count of source database objects
- target_database_ Mapping[str, float]object_ count 
- Count of target database objects
- schemaDifferences Property Map
- List of schema differences between the source and target databases
- validationErrors Property Map
- List of errors that happened while performing schema compare validation
- sourceDatabase Map<Number>Object Count 
- Count of source database objects
- targetDatabase Map<Number>Object Count 
- Count of target database objects
SchemaComparisonValidationResultTypeResponse, SchemaComparisonValidationResultTypeResponseArgs            
- ObjectName string
- Name of the object that has the difference
- ObjectType string
- Type of the object that has the difference. e.g (Table/View/StoredProcedure)
- UpdateAction string
- Update action type with respect to target
- ObjectName string
- Name of the object that has the difference
- ObjectType string
- Type of the object that has the difference. e.g (Table/View/StoredProcedure)
- UpdateAction string
- Update action type with respect to target
- objectName String
- Name of the object that has the difference
- objectType String
- Type of the object that has the difference. e.g (Table/View/StoredProcedure)
- updateAction String
- Update action type with respect to target
- objectName string
- Name of the object that has the difference
- objectType string
- Type of the object that has the difference. e.g (Table/View/StoredProcedure)
- updateAction string
- Update action type with respect to target
- object_name str
- Name of the object that has the difference
- object_type str
- Type of the object that has the difference. e.g (Table/View/StoredProcedure)
- update_action str
- Update action type with respect to target
- objectName String
- Name of the object that has the difference
- objectType String
- Type of the object that has the difference. e.g (Table/View/StoredProcedure)
- updateAction String
- Update action type with respect to target
SelectedCertificateInput, SelectedCertificateInputArgs      
- CertificateName string
- Name of certificate to be exported.
- Password string
- Password to use for encrypting the exported certificate.
- CertificateName string
- Name of certificate to be exported.
- Password string
- Password to use for encrypting the exported certificate.
- certificateName String
- Name of certificate to be exported.
- password String
- Password to use for encrypting the exported certificate.
- certificateName string
- Name of certificate to be exported.
- password string
- Password to use for encrypting the exported certificate.
- certificate_name str
- Name of certificate to be exported.
- password str
- Password to use for encrypting the exported certificate.
- certificateName String
- Name of certificate to be exported.
- password String
- Password to use for encrypting the exported certificate.
SelectedCertificateInputResponse, SelectedCertificateInputResponseArgs        
- CertificateName string
- Name of certificate to be exported.
- Password string
- Password to use for encrypting the exported certificate.
- CertificateName string
- Name of certificate to be exported.
- Password string
- Password to use for encrypting the exported certificate.
- certificateName String
- Name of certificate to be exported.
- password String
- Password to use for encrypting the exported certificate.
- certificateName string
- Name of certificate to be exported.
- password string
- Password to use for encrypting the exported certificate.
- certificate_name str
- Name of certificate to be exported.
- password str
- Password to use for encrypting the exported certificate.
- certificateName String
- Name of certificate to be exported.
- password String
- Password to use for encrypting the exported certificate.
ServerLevelPermissionsGroup, ServerLevelPermissionsGroupArgs        
- Default
- Default
- MigrationFrom Sql Server To Azure DB 
- MigrationFromSqlServerToAzureDB
- MigrationFrom Sql Server To Azure MI 
- MigrationFromSqlServerToAzureMI
- MigrationFrom My SQLTo Azure DBFor My SQL 
- MigrationFromMySQLToAzureDBForMySQL
- ServerLevel Permissions Group Default 
- Default
- ServerLevel Permissions Group Migration From Sql Server To Azure DB 
- MigrationFromSqlServerToAzureDB
- ServerLevel Permissions Group Migration From Sql Server To Azure MI 
- MigrationFromSqlServerToAzureMI
- ServerLevel Permissions Group Migration From My SQLTo Azure DBFor My SQL 
- MigrationFromMySQLToAzureDBForMySQL
- Default
- Default
- MigrationFrom Sql Server To Azure DB 
- MigrationFromSqlServerToAzureDB
- MigrationFrom Sql Server To Azure MI 
- MigrationFromSqlServerToAzureMI
- MigrationFrom My SQLTo Azure DBFor My SQL 
- MigrationFromMySQLToAzureDBForMySQL
- Default
- Default
- MigrationFrom Sql Server To Azure DB 
- MigrationFromSqlServerToAzureDB
- MigrationFrom Sql Server To Azure MI 
- MigrationFromSqlServerToAzureMI
- MigrationFrom My SQLTo Azure DBFor My SQL 
- MigrationFromMySQLToAzureDBForMySQL
- DEFAULT
- Default
- MIGRATION_FROM_SQL_SERVER_TO_AZURE_DB
- MigrationFromSqlServerToAzureDB
- MIGRATION_FROM_SQL_SERVER_TO_AZURE_MI
- MigrationFromSqlServerToAzureMI
- MIGRATION_FROM_MY_SQL_TO_AZURE_DB_FOR_MY_SQL
- MigrationFromMySQLToAzureDBForMySQL
- "Default"
- Default
- "MigrationFrom Sql Server To Azure DB" 
- MigrationFromSqlServerToAzureDB
- "MigrationFrom Sql Server To Azure MI" 
- MigrationFromSqlServerToAzureMI
- "MigrationFrom My SQLTo Azure DBFor My SQL" 
- MigrationFromMySQLToAzureDBForMySQL
SqlConnectionInfo, SqlConnectionInfoArgs      
- DataSource string
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- AdditionalSettings string
- Additional connection settings
- Authentication
string | Pulumi.Azure Native. Data Migration. Authentication Type 
- Authentication type to use for connection
- EncryptConnection bool
- Whether to encrypt the connection
- Password string
- Password credential.
- Platform
string | Pulumi.Azure Native. Data Migration. Sql Source Platform 
- Server platform type for connection
- TrustServer boolCertificate 
- Whether to trust the server certificate
- UserName string
- User name
- DataSource string
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- AdditionalSettings string
- Additional connection settings
- Authentication
string | AuthenticationType 
- Authentication type to use for connection
- EncryptConnection bool
- Whether to encrypt the connection
- Password string
- Password credential.
- Platform
string | SqlSource Platform 
- Server platform type for connection
- TrustServer boolCertificate 
- Whether to trust the server certificate
- UserName string
- User name
- dataSource String
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additionalSettings String
- Additional connection settings
- authentication
String | AuthenticationType 
- Authentication type to use for connection
- encryptConnection Boolean
- Whether to encrypt the connection
- password String
- Password credential.
- platform
String | SqlSource Platform 
- Server platform type for connection
- trustServer BooleanCertificate 
- Whether to trust the server certificate
- userName String
- User name
- dataSource string
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additionalSettings string
- Additional connection settings
- authentication
string | AuthenticationType 
- Authentication type to use for connection
- encryptConnection boolean
- Whether to encrypt the connection
- password string
- Password credential.
- platform
string | SqlSource Platform 
- Server platform type for connection
- trustServer booleanCertificate 
- Whether to trust the server certificate
- userName string
- User name
- data_source str
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional_settings str
- Additional connection settings
- authentication
str | AuthenticationType 
- Authentication type to use for connection
- encrypt_connection bool
- Whether to encrypt the connection
- password str
- Password credential.
- platform
str | SqlSource Platform 
- Server platform type for connection
- trust_server_ boolcertificate 
- Whether to trust the server certificate
- user_name str
- User name
- dataSource String
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additionalSettings String
- Additional connection settings
- authentication
String | "None" | "WindowsAuthentication" | "Sql Authentication" | "Active Directory Integrated" | "Active Directory Password" 
- Authentication type to use for connection
- encryptConnection Boolean
- Whether to encrypt the connection
- password String
- Password credential.
- platform
String | "SqlOn Prem" 
- Server platform type for connection
- trustServer BooleanCertificate 
- Whether to trust the server certificate
- userName String
- User name
SqlConnectionInfoResponse, SqlConnectionInfoResponseArgs        
- DataSource string
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- AdditionalSettings string
- Additional connection settings
- Authentication string
- Authentication type to use for connection
- EncryptConnection bool
- Whether to encrypt the connection
- Password string
- Password credential.
- Platform string
- Server platform type for connection
- TrustServer boolCertificate 
- Whether to trust the server certificate
- UserName string
- User name
- DataSource string
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- AdditionalSettings string
- Additional connection settings
- Authentication string
- Authentication type to use for connection
- EncryptConnection bool
- Whether to encrypt the connection
- Password string
- Password credential.
- Platform string
- Server platform type for connection
- TrustServer boolCertificate 
- Whether to trust the server certificate
- UserName string
- User name
- dataSource String
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additionalSettings String
- Additional connection settings
- authentication String
- Authentication type to use for connection
- encryptConnection Boolean
- Whether to encrypt the connection
- password String
- Password credential.
- platform String
- Server platform type for connection
- trustServer BooleanCertificate 
- Whether to trust the server certificate
- userName String
- User name
- dataSource string
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additionalSettings string
- Additional connection settings
- authentication string
- Authentication type to use for connection
- encryptConnection boolean
- Whether to encrypt the connection
- password string
- Password credential.
- platform string
- Server platform type for connection
- trustServer booleanCertificate 
- Whether to trust the server certificate
- userName string
- User name
- data_source str
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additional_settings str
- Additional connection settings
- authentication str
- Authentication type to use for connection
- encrypt_connection bool
- Whether to encrypt the connection
- password str
- Password credential.
- platform str
- Server platform type for connection
- trust_server_ boolcertificate 
- Whether to trust the server certificate
- user_name str
- User name
- dataSource String
- Data source in the format Protocol:MachineName\SQLServerInstanceName,PortNumber
- additionalSettings String
- Additional connection settings
- authentication String
- Authentication type to use for connection
- encryptConnection Boolean
- Whether to encrypt the connection
- password String
- Password credential.
- platform String
- Server platform type for connection
- trustServer BooleanCertificate 
- Whether to trust the server certificate
- userName String
- User name
SqlSourcePlatform, SqlSourcePlatformArgs      
- SqlOn Prem 
- SqlOnPrem
- SqlSource Platform Sql On Prem 
- SqlOnPrem
- SqlOn Prem 
- SqlOnPrem
- SqlOn Prem 
- SqlOnPrem
- SQL_ON_PREM
- SqlOnPrem
- "SqlOn Prem" 
- SqlOnPrem
StartMigrationScenarioServerRoleResultResponse, StartMigrationScenarioServerRoleResultResponseArgs              
- ExceptionsAnd List<Pulumi.Warnings Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Migration exceptions and warnings.
- Name string
- Name of server role.
- State string
- Current state of migration
- ExceptionsAnd []ReportableWarnings Exception Response 
- Migration exceptions and warnings.
- Name string
- Name of server role.
- State string
- Current state of migration
- exceptionsAnd List<ReportableWarnings Exception Response> 
- Migration exceptions and warnings.
- name String
- Name of server role.
- state String
- Current state of migration
- exceptionsAnd ReportableWarnings Exception Response[] 
- Migration exceptions and warnings.
- name string
- Name of server role.
- state string
- Current state of migration
- exceptions_and_ Sequence[Reportablewarnings Exception Response] 
- Migration exceptions and warnings.
- name str
- Name of server role.
- state str
- Current state of migration
- exceptionsAnd List<Property Map>Warnings 
- Migration exceptions and warnings.
- name String
- Name of server role.
- state String
- Current state of migration
SyncMigrationDatabaseErrorEventResponse, SyncMigrationDatabaseErrorEventResponseArgs            
- EventText string
- Event text.
- EventType stringString 
- Event type.
- TimestampString string
- String value of timestamp.
- EventText string
- Event text.
- EventType stringString 
- Event type.
- TimestampString string
- String value of timestamp.
- eventText String
- Event text.
- eventType StringString 
- Event type.
- timestampString String
- String value of timestamp.
- eventText string
- Event text.
- eventType stringString 
- Event type.
- timestampString string
- String value of timestamp.
- event_text str
- Event text.
- event_type_ strstring 
- Event type.
- timestamp_string str
- String value of timestamp.
- eventText String
- Event text.
- eventType StringString 
- Event type.
- timestampString String
- String value of timestamp.
ValidateMigrationInputSqlServerSqlDbSyncTaskProperties, ValidateMigrationInputSqlServerSqlDbSyncTaskPropertiesArgs                    
- input Property Map
- Task input
ValidateMigrationInputSqlServerSqlDbSyncTaskPropertiesResponse, ValidateMigrationInputSqlServerSqlDbSyncTaskPropertiesResponseArgs                      
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Validate Sync Migration Input Sql Server Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Validate Sync Migration Input Sql Server Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ValidateSync Migration Input Sql Server Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ValidateSync Migration Input Sql Server Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ValidateSync Migration Input Sql Server Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ValidateSync Migration Input Sql Server Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ValidateSync Migration Input Sql Server Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ValidateSync Migration Input Sql Server Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ValidateSync Migration Input Sql Server Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ValidateSync Migration Input Sql Server Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ValidateMigrationInputSqlServerSqlMISyncTaskInput, ValidateMigrationInputSqlServerSqlMISyncTaskInputArgs                  
- AzureApp Pulumi.Azure Native. Data Migration. Inputs. Azure Active Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Mi Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share 
- Backup file share information for all selected databases.
- AzureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input 
- Databases to migrate
- SourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases MigrateSql Server Sql MIDatabase Input[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Connection information for source SQL Server
- storageResource stringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azure_app AzureActive Directory App 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info 
- Connection information for source SQL Server
- storage_resource_ strid 
- Fully qualified resourceId of storage
- target_connection_ Miinfo Sql Connection Info 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare 
- Backup file share information for all selected databases.
- azureApp Property Map
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection Property MapInfo 
- Connection information for Azure SQL Database Managed Instance
- Property Map
- Backup file share information for all selected databases.
ValidateMigrationInputSqlServerSqlMISyncTaskInputResponse, ValidateMigrationInputSqlServerSqlMISyncTaskInputResponseArgs                    
- AzureApp Pulumi.Azure Native. Data Migration. Inputs. Azure Active Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Mi Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share Response 
- Backup file share information for all selected databases.
- AzureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input Response 
- Databases to migrate
- SourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- StorageResource stringId 
- Fully qualified resourceId of storage
- TargetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input Response> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azureApp AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases MigrateSql Server Sql MIDatabase Input Response[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Connection information for source SQL Server
- storageResource stringId 
- Fully qualified resourceId of storage
- targetConnection MiInfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azure_app AzureActive Directory App Response 
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input Response] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info Response 
- Connection information for source SQL Server
- storage_resource_ strid 
- Fully qualified resourceId of storage
- target_connection_ Miinfo Sql Connection Info Response 
- Connection information for Azure SQL Database Managed Instance
- 
FileShare Response 
- Backup file share information for all selected databases.
- azureApp Property Map
- Azure Active Directory Application the DMS instance will use to connect to the target instance of Azure SQL Database Managed Instance and the Azure Storage Account
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Connection information for source SQL Server
- storageResource StringId 
- Fully qualified resourceId of storage
- targetConnection Property MapInfo 
- Connection information for Azure SQL Database Managed Instance
- Property Map
- Backup file share information for all selected databases.
ValidateMigrationInputSqlServerSqlMISyncTaskOutputResponse, ValidateMigrationInputSqlServerSqlMISyncTaskOutputResponseArgs                    
- Id string
- Database identifier
- Name string
- Name of database
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Errors associated with a selected database object
- Id string
- Database identifier
- Name string
- Name of database
- ValidationErrors []ReportableException Response 
- Errors associated with a selected database object
- id String
- Database identifier
- name String
- Name of database
- validationErrors List<ReportableException Response> 
- Errors associated with a selected database object
- id string
- Database identifier
- name string
- Name of database
- validationErrors ReportableException Response[] 
- Errors associated with a selected database object
- id str
- Database identifier
- name str
- Name of database
- validation_errors Sequence[ReportableException Response] 
- Errors associated with a selected database object
- id String
- Database identifier
- name String
- Name of database
- validationErrors List<Property Map>
- Errors associated with a selected database object
ValidateMigrationInputSqlServerSqlMISyncTaskProperties, ValidateMigrationInputSqlServerSqlMISyncTaskPropertiesArgs                  
- input Property Map
- Task input
ValidateMigrationInputSqlServerSqlMISyncTaskPropertiesResponse, ValidateMigrationInputSqlServerSqlMISyncTaskPropertiesResponseArgs                    
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Validate Migration Input Sql Server Sql MISync Task Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Validate Migration Input Sql Server Sql MISync Task Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ValidateMigration Input Sql Server Sql MISync Task Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ValidateMigration Input Sql Server Sql MISync Task Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ValidateMigration Input Sql Server Sql MISync Task Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ValidateMigration Input Sql Server Sql MISync Task Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ValidateMigration Input Sql Server Sql MISync Task Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ValidateMigration Input Sql Server Sql MISync Task Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ValidateMigration Input Sql Server Sql MISync Task Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ValidateMigration Input Sql Server Sql MISync Task Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ValidateMigrationInputSqlServerSqlMITaskInput, ValidateMigrationInputSqlServerSqlMITaskInputArgs                
- 
Pulumi.Azure Native. Data Migration. Inputs. Blob Share 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to target
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share 
- Backup file share information for all selected databases.
- BackupMode string | Pulumi.Azure Native. Data Migration. Backup Mode 
- Backup Mode to specify whether to use existing backup or create new backup.
- SelectedLogins List<string>
- Logins to migrate
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input 
- Databases to migrate
- SourceConnection SqlInfo Connection Info 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- BackupMode string | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup.
- SelectedLogins []string
- Logins to migrate
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- backupMode String | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup.
- selectedLogins List<String>
- Logins to migrate
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases MigrateSql Server Sql MIDatabase Input[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- backupMode string | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup.
- selectedLogins string[]
- Logins to migrate
- 
BlobShare 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info 
- Information for connecting to target
- 
FileShare 
- Backup file share information for all selected databases.
- backup_mode str | BackupMode 
- Backup Mode to specify whether to use existing backup or create new backup.
- selected_logins Sequence[str]
- Logins to migrate
- Property Map
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- Property Map
- Backup file share information for all selected databases.
- backupMode String | "CreateBackup" | "Existing Backup" 
- Backup Mode to specify whether to use existing backup or create new backup.
- selectedLogins List<String>
- Logins to migrate
ValidateMigrationInputSqlServerSqlMITaskInputResponse, ValidateMigrationInputSqlServerSqlMITaskInputResponseArgs                  
- 
Pulumi.Azure Native. Data Migration. Inputs. Blob Share Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql MIDatabase Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to source
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to target
- 
Pulumi.Azure Native. Data Migration. Inputs. File Share Response 
- Backup file share information for all selected databases.
- BackupMode string
- Backup Mode to specify whether to use existing backup or create new backup.
- SelectedLogins List<string>
- Logins to migrate
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- SelectedDatabases []MigrateSql Server Sql MIDatabase Input Response 
- Databases to migrate
- SourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- TargetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- BackupMode string
- Backup Mode to specify whether to use existing backup or create new backup.
- SelectedLogins []string
- Logins to migrate
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<MigrateSql Server Sql MIDatabase Input Response> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- backupMode String
- Backup Mode to specify whether to use existing backup or create new backup.
- selectedLogins List<String>
- Logins to migrate
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases MigrateSql Server Sql MIDatabase Input Response[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- backupMode string
- Backup Mode to specify whether to use existing backup or create new backup.
- selectedLogins string[]
- Logins to migrate
- 
BlobShare Response 
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selected_databases Sequence[MigrateSql Server Sql MIDatabase Input Response] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info Response 
- Information for connecting to source
- target_connection_ Sqlinfo Connection Info Response 
- Information for connecting to target
- 
FileShare Response 
- Backup file share information for all selected databases.
- backup_mode str
- Backup Mode to specify whether to use existing backup or create new backup.
- selected_logins Sequence[str]
- Logins to migrate
- Property Map
- SAS URI of Azure Storage Account Container to be used for storing backup files.
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source
- targetConnection Property MapInfo 
- Information for connecting to target
- Property Map
- Backup file share information for all selected databases.
- backupMode String
- Backup Mode to specify whether to use existing backup or create new backup.
- selectedLogins List<String>
- Logins to migrate
ValidateMigrationInputSqlServerSqlMITaskOutputResponse, ValidateMigrationInputSqlServerSqlMITaskOutputResponseArgs                  
- BackupFolder List<Pulumi.Errors Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Errors associated with the BackupFolder path
- 
List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Errors associated with backup share user name and password credentials
- BackupStorage List<Pulumi.Account Errors Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Errors associated with the storage account provided.
- ExistingBackup List<Pulumi.Errors Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Errors associated with existing backup files.
- Id string
- Result identifier
- Name string
- Name of database
- RestoreDatabase List<Pulumi.Name Errors Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Errors associated with the RestoreDatabaseName
- DatabaseBackup Pulumi.Info Azure Native. Data Migration. Inputs. Database Backup Info Response 
- Information about backup files when existing backup mode is used.
- BackupFolder []ReportableErrors Exception Response 
- Errors associated with the BackupFolder path
- 
[]ReportableException Response 
- Errors associated with backup share user name and password credentials
- BackupStorage []ReportableAccount Errors Exception Response 
- Errors associated with the storage account provided.
- ExistingBackup []ReportableErrors Exception Response 
- Errors associated with existing backup files.
- Id string
- Result identifier
- Name string
- Name of database
- RestoreDatabase []ReportableName Errors Exception Response 
- Errors associated with the RestoreDatabaseName
- DatabaseBackup DatabaseInfo Backup Info Response 
- Information about backup files when existing backup mode is used.
- backupFolder List<ReportableErrors Exception Response> 
- Errors associated with the BackupFolder path
- 
List<ReportableException Response> 
- Errors associated with backup share user name and password credentials
- backupStorage List<ReportableAccount Errors Exception Response> 
- Errors associated with the storage account provided.
- existingBackup List<ReportableErrors Exception Response> 
- Errors associated with existing backup files.
- id String
- Result identifier
- name String
- Name of database
- restoreDatabase List<ReportableName Errors Exception Response> 
- Errors associated with the RestoreDatabaseName
- databaseBackup DatabaseInfo Backup Info Response 
- Information about backup files when existing backup mode is used.
- backupFolder ReportableErrors Exception Response[] 
- Errors associated with the BackupFolder path
- 
ReportableException Response[] 
- Errors associated with backup share user name and password credentials
- backupStorage ReportableAccount Errors Exception Response[] 
- Errors associated with the storage account provided.
- existingBackup ReportableErrors Exception Response[] 
- Errors associated with existing backup files.
- id string
- Result identifier
- name string
- Name of database
- restoreDatabase ReportableName Errors Exception Response[] 
- Errors associated with the RestoreDatabaseName
- databaseBackup DatabaseInfo Backup Info Response 
- Information about backup files when existing backup mode is used.
- backup_folder_ Sequence[Reportableerrors Exception Response] 
- Errors associated with the BackupFolder path
- 
Sequence[ReportableException Response] 
- Errors associated with backup share user name and password credentials
- backup_storage_ Sequence[Reportableaccount_ errors Exception Response] 
- Errors associated with the storage account provided.
- existing_backup_ Sequence[Reportableerrors Exception Response] 
- Errors associated with existing backup files.
- id str
- Result identifier
- name str
- Name of database
- restore_database_ Sequence[Reportablename_ errors Exception Response] 
- Errors associated with the RestoreDatabaseName
- database_backup_ Databaseinfo Backup Info Response 
- Information about backup files when existing backup mode is used.
- backupFolder List<Property Map>Errors 
- Errors associated with the BackupFolder path
- List<Property Map>
- Errors associated with backup share user name and password credentials
- backupStorage List<Property Map>Account Errors 
- Errors associated with the storage account provided.
- existingBackup List<Property Map>Errors 
- Errors associated with existing backup files.
- id String
- Result identifier
- name String
- Name of database
- restoreDatabase List<Property Map>Name Errors 
- Errors associated with the RestoreDatabaseName
- databaseBackup Property MapInfo 
- Information about backup files when existing backup mode is used.
ValidateMigrationInputSqlServerSqlMITaskProperties, ValidateMigrationInputSqlServerSqlMITaskPropertiesArgs                
- input Property Map
- Task input
ValidateMigrationInputSqlServerSqlMITaskPropertiesResponse, ValidateMigrationInputSqlServerSqlMITaskPropertiesResponseArgs                  
- Commands
List<Union<Pulumi.Azure Native. Data Migration. Inputs. Migrate MISync Complete Command Properties Response, Pulumi. Azure Native. Data Migration. Inputs. Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- Errors
List<Pulumi.Azure Native. Data Migration. Inputs. OData Error Response> 
- Array of errors. This is ignored if submitted.
- Output
List<Pulumi.Azure Native. Data Migration. Inputs. Validate Migration Input Sql Server Sql MITask Output Response> 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
Pulumi.Azure Native. Data Migration. Inputs. Validate Migration Input Sql Server Sql MITask Input Response 
- Task input
- Commands []interface{}
- Array of command properties.
- Errors
[]ODataError Response 
- Array of errors. This is ignored if submitted.
- Output
[]ValidateMigration Input Sql Server Sql MITask Output Response 
- Task output. This is ignored if submitted.
- State string
- The state of the task. This is ignored if submitted.
- Input
ValidateMigration Input Sql Server Sql MITask Input Response 
- Task input
- commands
List<Either<MigrateMISync Complete Command Properties Response,Migrate Sync Complete Command Properties Response>> 
- Array of command properties.
- errors
List<ODataError Response> 
- Array of errors. This is ignored if submitted.
- output
List<ValidateMigration Input Sql Server Sql MITask Output Response> 
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input
ValidateMigration Input Sql Server Sql MITask Input Response 
- Task input
- commands
(MigrateMISync Complete Command Properties Response | Migrate Sync Complete Command Properties Response)[] 
- Array of command properties.
- errors
ODataError Response[] 
- Array of errors. This is ignored if submitted.
- output
ValidateMigration Input Sql Server Sql MITask Output Response[] 
- Task output. This is ignored if submitted.
- state string
- The state of the task. This is ignored if submitted.
- input
ValidateMigration Input Sql Server Sql MITask Input Response 
- Task input
- commands
Sequence[Union[MigrateMISync Complete Command Properties Response, Migrate Sync Complete Command Properties Response]] 
- Array of command properties.
- errors
Sequence[ODataError Response] 
- Array of errors. This is ignored if submitted.
- output
Sequence[ValidateMigration Input Sql Server Sql MITask Output Response] 
- Task output. This is ignored if submitted.
- state str
- The state of the task. This is ignored if submitted.
- input
ValidateMigration Input Sql Server Sql MITask Input Response 
- Task input
- commands List<Property Map | Property Map>
- Array of command properties.
- errors List<Property Map>
- Array of errors. This is ignored if submitted.
- output List<Property Map>
- Task output. This is ignored if submitted.
- state String
- The state of the task. This is ignored if submitted.
- input Property Map
- Task input
ValidateSyncMigrationInputSqlServerTaskInput, ValidateSyncMigrationInputSqlServerTaskInputArgs                
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Sync Database Input> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to source SQL server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info 
- Information for connecting to target
- SelectedDatabases []MigrateSql Server Sql Db Sync Database Input 
- Databases to migrate
- SourceConnection SqlInfo Connection Info 
- Information for connecting to source SQL server
- TargetConnection SqlInfo Connection Info 
- Information for connecting to target
- selectedDatabases List<MigrateSql Server Sql Db Sync Database Input> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source SQL server
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- selectedDatabases MigrateSql Server Sql Db Sync Database Input[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info 
- Information for connecting to source SQL server
- targetConnection SqlInfo Connection Info 
- Information for connecting to target
- selected_databases Sequence[MigrateSql Server Sql Db Sync Database Input] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info 
- Information for connecting to source SQL server
- target_connection_ Sqlinfo Connection Info 
- Information for connecting to target
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source SQL server
- targetConnection Property MapInfo 
- Information for connecting to target
ValidateSyncMigrationInputSqlServerTaskInputResponse, ValidateSyncMigrationInputSqlServerTaskInputResponseArgs                  
- SelectedDatabases List<Pulumi.Azure Native. Data Migration. Inputs. Migrate Sql Server Sql Db Sync Database Input Response> 
- Databases to migrate
- SourceConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to source SQL server
- TargetConnection Pulumi.Info Azure Native. Data Migration. Inputs. Sql Connection Info Response 
- Information for connecting to target
- SelectedDatabases []MigrateSql Server Sql Db Sync Database Input Response 
- Databases to migrate
- SourceConnection SqlInfo Connection Info Response 
- Information for connecting to source SQL server
- TargetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- selectedDatabases List<MigrateSql Server Sql Db Sync Database Input Response> 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source SQL server
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- selectedDatabases MigrateSql Server Sql Db Sync Database Input Response[] 
- Databases to migrate
- sourceConnection SqlInfo Connection Info Response 
- Information for connecting to source SQL server
- targetConnection SqlInfo Connection Info Response 
- Information for connecting to target
- selected_databases Sequence[MigrateSql Server Sql Db Sync Database Input Response] 
- Databases to migrate
- source_connection_ Sqlinfo Connection Info Response 
- Information for connecting to source SQL server
- target_connection_ Sqlinfo Connection Info Response 
- Information for connecting to target
- selectedDatabases List<Property Map>
- Databases to migrate
- sourceConnection Property MapInfo 
- Information for connecting to source SQL server
- targetConnection Property MapInfo 
- Information for connecting to target
ValidateSyncMigrationInputSqlServerTaskOutputResponse, ValidateSyncMigrationInputSqlServerTaskOutputResponseArgs                  
- Id string
- Database identifier
- Name string
- Name of database
- ValidationErrors List<Pulumi.Azure Native. Data Migration. Inputs. Reportable Exception Response> 
- Errors associated with a selected database object
- Id string
- Database identifier
- Name string
- Name of database
- ValidationErrors []ReportableException Response 
- Errors associated with a selected database object
- id String
- Database identifier
- name String
- Name of database
- validationErrors List<ReportableException Response> 
- Errors associated with a selected database object
- id string
- Database identifier
- name string
- Name of database
- validationErrors ReportableException Response[] 
- Errors associated with a selected database object
- id str
- Database identifier
- name str
- Name of database
- validation_errors Sequence[ReportableException Response] 
- Errors associated with a selected database object
- id String
- Database identifier
- name String
- Name of database
- validationErrors List<Property Map>
- Errors associated with a selected database object
ValidationErrorResponse, ValidationErrorResponseArgs      
WaitStatisticsResponse, WaitStatisticsResponseArgs      
- WaitCount double
- Total no. of waits
- WaitTime doubleMs 
- Total wait time in millisecond(s)
- WaitType string
- Type of the Wait
- WaitCount float64
- Total no. of waits
- WaitTime float64Ms 
- Total wait time in millisecond(s)
- WaitType string
- Type of the Wait
- waitCount Double
- Total no. of waits
- waitTime DoubleMs 
- Total wait time in millisecond(s)
- waitType String
- Type of the Wait
- waitCount number
- Total no. of waits
- waitTime numberMs 
- Total wait time in millisecond(s)
- waitType string
- Type of the Wait
- wait_count float
- Total no. of waits
- wait_time_ floatms 
- Total wait time in millisecond(s)
- wait_type str
- Type of the Wait
- waitCount Number
- Total no. of waits
- waitTime NumberMs 
- Total wait time in millisecond(s)
- waitType String
- Type of the Wait
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datamigration:Task DmsSdkTask /subscriptions/fc04246f-04c5-437e-ac5e-206a19e7193f/resourceGroups/DmsSdkRg/providers/Microsoft.DataMigration/services/DmsSdkService/projects/DmsSdkProject/tasks/DmsSdkTask 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0