Microsoft.DataMigration sqlMigrationServices

Bicep resource definition

The sqlMigrationServices resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.DataMigration/sqlMigrationServices resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.DataMigration/sqlMigrationServices@2025-09-01-preview' = {
  location: 'string'
  name: 'string'
  properties: {}
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.DataMigration/sqlMigrationServices

Name Description Value
location string
name The resource name string (required)
properties The SQL Migration Service properties. SqlMigrationServiceProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates

SqlMigrationServiceProperties

Name Description Value

SqlMigrationServiceTags

Name Description Value

ARM template resource definition

The sqlMigrationServices resource type can be deployed with operations that target:

Usage Examples

Resource format

To create a Microsoft.DataMigration/sqlMigrationServices resource, add the following JSON to your template.

{
  "type": "Microsoft.DataMigration/sqlMigrationServices",
  "apiVersion": "2025-09-01-preview",
  "name": "string",
  "location": "string",
  "properties": {
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.DataMigration/sqlMigrationServices

Name Description Value
apiVersion The api version '2025-09-01-preview'
location string
name The resource name string (required)
properties The SQL Migration Service properties. SqlMigrationServiceProperties
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.DataMigration/sqlMigrationServices'

SqlMigrationServiceProperties

Name Description Value

SqlMigrationServiceTags

Name Description Value

Terraform (AzAPI provider) resource definition

The sqlMigrationServices resource type can be deployed with operations that target:

  • Resource groups For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.DataMigration/sqlMigrationServices resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DataMigration/sqlMigrationServices@2025-09-01-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
    }
  }
}

Property Values

Microsoft.DataMigration/sqlMigrationServices

Name Description Value
location string
name The resource name string (required)
properties The SQL Migration Service properties. SqlMigrationServiceProperties
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.DataMigration/sqlMigrationServices@2025-09-01-preview"

SqlMigrationServiceProperties

Name Description Value

SqlMigrationServiceTags

Name Description Value