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 assessmentProjects 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/assessmentProjects resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.Migrate/assessmentProjects@2024-03-03-preview' = {
location: 'string'
name: 'string'
properties: {
assessmentSolutionId: 'string'
customerStorageAccountArmId: 'string'
customerWorkspaceId: 'string'
customerWorkspaceLocation: 'string'
projectStatus: 'string'
publicNetworkAccess: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
Microsoft.Migrate/assessmentProjects
| Name | Description | Value |
|---|---|---|
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Pattern = ^[^<>&:\?/#]{1,260}$ (required) |
| properties | The resource-specific properties for this resource. | ProjectProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ProjectProperties
| Name | Description | Value |
|---|---|---|
| assessmentSolutionId | Assessment solution ARM id tracked by Microsoft.Migrate/migrateProjects. | string |
| customerStorageAccountArmId | The ARM id of the storage account used for interactions when public access is disabled. |
string |
| customerWorkspaceId | The ARM id of service map workspace created by customer. | string |
| customerWorkspaceLocation | Location of service map workspace created by customer. | string |
| projectStatus | Assessment project status. | 'Active' 'Inactive' |
| publicNetworkAccess | This value can be set to 'enabled' to avoid breaking changes on existing customer resources and templates. If set to 'disabled', traffic over public interface is not allowed, and private endpoint connections would be the exclusive access method. |
string |
TrackedResourceTags
| Name | Description | Value |
|---|
ARM template resource definition
The assessmentProjects 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/assessmentProjects resource, add the following JSON to your template.
{
"type": "Microsoft.Migrate/assessmentProjects",
"apiVersion": "2024-03-03-preview",
"name": "string",
"location": "string",
"properties": {
"assessmentSolutionId": "string",
"customerStorageAccountArmId": "string",
"customerWorkspaceId": "string",
"customerWorkspaceLocation": "string",
"projectStatus": "string",
"publicNetworkAccess": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
Microsoft.Migrate/assessmentProjects
| Name | Description | Value |
|---|---|---|
| apiVersion | The api version | '2024-03-03-preview' |
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Pattern = ^[^<>&:\?/#]{1,260}$ (required) |
| properties | The resource-specific properties for this resource. | ProjectProperties |
| tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
| type | The resource type | 'Microsoft.Migrate/assessmentProjects' |
ProjectProperties
| Name | Description | Value |
|---|---|---|
| assessmentSolutionId | Assessment solution ARM id tracked by Microsoft.Migrate/migrateProjects. | string |
| customerStorageAccountArmId | The ARM id of the storage account used for interactions when public access is disabled. |
string |
| customerWorkspaceId | The ARM id of service map workspace created by customer. | string |
| customerWorkspaceLocation | Location of service map workspace created by customer. | string |
| projectStatus | Assessment project status. | 'Active' 'Inactive' |
| publicNetworkAccess | This value can be set to 'enabled' to avoid breaking changes on existing customer resources and templates. If set to 'disabled', traffic over public interface is not allowed, and private endpoint connections would be the exclusive access method. |
string |
TrackedResourceTags
| Name | Description | Value |
|---|
Usage Examples
Terraform (AzAPI provider) resource definition
The assessmentProjects 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/assessmentProjects resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Migrate/assessmentProjects@2024-03-03-preview"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
assessmentSolutionId = "string"
customerStorageAccountArmId = "string"
customerWorkspaceId = "string"
customerWorkspaceLocation = "string"
projectStatus = "string"
publicNetworkAccess = "string"
}
}
}
Property Values
Microsoft.Migrate/assessmentProjects
| Name | Description | Value |
|---|---|---|
| location | The geo-location where the resource lives | string (required) |
| name | The resource name | string Constraints: Pattern = ^[^<>&:\?/#]{1,260}$ (required) |
| properties | The resource-specific properties for this resource. | ProjectProperties |
| tags | Resource tags | Dictionary of tag names and values. |
| type | The resource type | "Microsoft.Migrate/assessmentProjects@2024-03-03-preview" |
ProjectProperties
| Name | Description | Value |
|---|---|---|
| assessmentSolutionId | Assessment solution ARM id tracked by Microsoft.Migrate/migrateProjects. | string |
| customerStorageAccountArmId | The ARM id of the storage account used for interactions when public access is disabled. |
string |
| customerWorkspaceId | The ARM id of service map workspace created by customer. | string |
| customerWorkspaceLocation | Location of service map workspace created by customer. | string |
| projectStatus | Assessment project status. | 'Active' 'Inactive' |
| publicNetworkAccess | This value can be set to 'enabled' to avoid breaking changes on existing customer resources and templates. If set to 'disabled', traffic over public interface is not allowed, and private endpoint connections would be the exclusive access method. |
string |
TrackedResourceTags
| Name | Description | Value |
|---|