Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The migrateProjects resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Migrate/migrateProjects resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Migrate/migrateProjects@2023-01-01' = {
eTag: 'string'
location: 'string'
name: 'string'
properties: {
publicNetworkAccess: 'string'
serviceEndpoint: 'string'
utilityStorageAccountId: 'string'
}
}
Property Values
Microsoft.Migrate/migrateProjects
Name | Description | Value |
---|---|---|
eTag | For optimistic concurrency control. | string |
location | Azure location in which project is created. | string |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9-]{3,24}$ (required) |
properties | Properties of a migrate project. | MigrateProjectProperties |
MigrateProjectProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Gets or sets the state of public network access. | 'Disabled' 'Enabled' 'NotSpecified' |
serviceEndpoint | Service endpoint. | string |
utilityStorageAccountId | Utility storage account id. | string |
ARM template resource definition
The migrateProjects resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.Migrate/migrateProjects resource, add the following JSON to your template.
{
"type": "Microsoft.Migrate/migrateProjects",
"apiVersion": "2023-01-01",
"name": "string",
"eTag": "string",
"location": "string",
"properties": {
"publicNetworkAccess": "string",
"serviceEndpoint": "string",
"utilityStorageAccountId": "string"
}
}
Property Values
Microsoft.Migrate/migrateProjects
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2023-01-01' |
eTag | For optimistic concurrency control. | string |
location | Azure location in which project is created. | string |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9-]{3,24}$ (required) |
properties | Properties of a migrate project. | MigrateProjectProperties |
type | The resource type | 'Microsoft.Migrate/migrateProjects' |
MigrateProjectProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Gets or sets the state of public network access. | 'Disabled' 'Enabled' 'NotSpecified' |
serviceEndpoint | Service endpoint. | string |
utilityStorageAccountId | Utility storage account id. | string |
Usage Examples
Azure Quickstart Templates
The following Azure Quickstart templates deploy this resource type.
Template | Description |
---|---|
Create an Azure Migrate project |
This template creates an Azure Migrate project that will be used for discovering, assessing and migrating servers, apps, data |
Terraform (AzAPI provider) resource definition
The migrateProjects 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.Migrate/migrateProjects resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Migrate/migrateProjects@2023-01-01"
name = "string"
location = "string"
body = {
eTag = "string"
properties = {
publicNetworkAccess = "string"
serviceEndpoint = "string"
utilityStorageAccountId = "string"
}
}
}
Property Values
Microsoft.Migrate/migrateProjects
Name | Description | Value |
---|---|---|
eTag | For optimistic concurrency control. | string |
location | Azure location in which project is created. | string |
name | The resource name | string Constraints: Pattern = ^[a-zA-Z0-9-]{3,24}$ (required) |
properties | Properties of a migrate project. | MigrateProjectProperties |
type | The resource type | "Microsoft.Migrate/migrateProjects@2023-01-01" |
MigrateProjectProperties
Name | Description | Value |
---|---|---|
publicNetworkAccess | Gets or sets the state of public network access. | 'Disabled' 'Enabled' 'NotSpecified' |
serviceEndpoint | Service endpoint. | string |
utilityStorageAccountId | Utility storage account id. | string |