Microsoft.CognitiveServices accounts/managedComputeDeployments

Bicep resource definition

The accounts/managedComputeDeployments 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.CognitiveServices/accounts/managedComputeDeployments resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.CognitiveServices/accounts/managedComputeDeployments@2026-03-15-preview' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    acceleratorType: 'string'
    computeId: 'string'
    deploymentTemplate: 'string'
    model: 'string'
    priority: 'string'
    versionUpgradeOption: 'string'
  }
  sku: {
    capacity: int
    family: 'string'
    name: 'string'
    size: 'string'
    tier: 'string'
  }
}

Property Values

Microsoft.CognitiveServices/accounts/managedComputeDeployments

Name Description Value
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9._-]{0,63}$ (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: accounts
properties Properties of the Cognitive Services managed compute deployment. ManagedComputeDeploymentProperties
sku The resource model definition representing SKU Sku

ManagedComputeDeploymentProperties

Name Description Value
acceleratorType Accelerator type (e.g., H100_80GB). Optional on creation; immutable after creation. string
computeId Foundry compute ARM resource ID for VM-backed managed compute deployments. Required when sku.name is VmManagedCompute; immutable after creation. string
deploymentTemplate Deployment template identifier. Optional on creation.
Accepts an AzureML Registry deployment template URI or a project-scoped deployment template path for VmManagedCompute.
Examples: azureml://registries/{registry}/deploymenttemplates/{template}/versions/{version}, projects/{project}/deploymentTemplates/{template}/versions/{version}
string
model AzureML Registry model asset URI. Required on creation; immutable after creation.
Example: azureml://registries/{registry}/models/{model}/versions/{version}
string (required)
priority Scheduling priority for VM-backed managed compute deployments. Immutable after creation. string
versionUpgradeOption Template auto-upgrade policy. Defaults to OnceNewDefaultVersionAvailable. 'NoAutoUpgrade'
'OnceCurrentVersionExpired'
'OnceNewDefaultVersionAvailable'

Sku

Name Description Value
capacity If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. int
family If the service has different generations of hardware, for the same SKU, then that can be captured here. string
name The name of the SKU. Ex - P3. It is typically a letter+number code string (required)
size The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. string
tier This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. 'Basic'
'Enterprise'
'Free'
'Premium'
'Standard'

ARM template resource definition

The accounts/managedComputeDeployments 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.CognitiveServices/accounts/managedComputeDeployments resource, add the following JSON to your template.

{
  "type": "Microsoft.CognitiveServices/accounts/managedComputeDeployments",
  "apiVersion": "2026-03-15-preview",
  "name": "string",
  "properties": {
    "acceleratorType": "string",
    "computeId": "string",
    "deploymentTemplate": "string",
    "model": "string",
    "priority": "string",
    "versionUpgradeOption": "string"
  },
  "sku": {
    "capacity": "int",
    "family": "string",
    "name": "string",
    "size": "string",
    "tier": "string"
  }
}

Property Values

Microsoft.CognitiveServices/accounts/managedComputeDeployments

Name Description Value
apiVersion The api version '2026-03-15-preview'
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9._-]{0,63}$ (required)
properties Properties of the Cognitive Services managed compute deployment. ManagedComputeDeploymentProperties
sku The resource model definition representing SKU Sku
type The resource type 'Microsoft.CognitiveServices/accounts/managedComputeDeployments'

ManagedComputeDeploymentProperties

Name Description Value
acceleratorType Accelerator type (e.g., H100_80GB). Optional on creation; immutable after creation. string
computeId Foundry compute ARM resource ID for VM-backed managed compute deployments. Required when sku.name is VmManagedCompute; immutable after creation. string
deploymentTemplate Deployment template identifier. Optional on creation.
Accepts an AzureML Registry deployment template URI or a project-scoped deployment template path for VmManagedCompute.
Examples: azureml://registries/{registry}/deploymenttemplates/{template}/versions/{version}, projects/{project}/deploymentTemplates/{template}/versions/{version}
string
model AzureML Registry model asset URI. Required on creation; immutable after creation.
Example: azureml://registries/{registry}/models/{model}/versions/{version}
string (required)
priority Scheduling priority for VM-backed managed compute deployments. Immutable after creation. string
versionUpgradeOption Template auto-upgrade policy. Defaults to OnceNewDefaultVersionAvailable. 'NoAutoUpgrade'
'OnceCurrentVersionExpired'
'OnceNewDefaultVersionAvailable'

Sku

Name Description Value
capacity If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. int
family If the service has different generations of hardware, for the same SKU, then that can be captured here. string
name The name of the SKU. Ex - P3. It is typically a letter+number code string (required)
size The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. string
tier This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. 'Basic'
'Enterprise'
'Free'
'Premium'
'Standard'

Usage Examples

Terraform (AzAPI provider) resource definition

The accounts/managedComputeDeployments 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.CognitiveServices/accounts/managedComputeDeployments resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.CognitiveServices/accounts/managedComputeDeployments@2026-03-15-preview"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      acceleratorType = "string"
      computeId = "string"
      deploymentTemplate = "string"
      model = "string"
      priority = "string"
      versionUpgradeOption = "string"
    }
    sku = {
      capacity = int
      family = "string"
      name = "string"
      size = "string"
      tier = "string"
    }
  }
}

Property Values

Microsoft.CognitiveServices/accounts/managedComputeDeployments

Name Description Value
name The resource name string

Constraints:
Pattern = ^[a-zA-Z0-9][a-zA-Z0-9._-]{0,63}$ (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: accounts
properties Properties of the Cognitive Services managed compute deployment. ManagedComputeDeploymentProperties
sku The resource model definition representing SKU Sku
type The resource type "Microsoft.CognitiveServices/accounts/managedComputeDeployments@2026-03-15-preview"

ManagedComputeDeploymentProperties

Name Description Value
acceleratorType Accelerator type (e.g., H100_80GB). Optional on creation; immutable after creation. string
computeId Foundry compute ARM resource ID for VM-backed managed compute deployments. Required when sku.name is VmManagedCompute; immutable after creation. string
deploymentTemplate Deployment template identifier. Optional on creation.
Accepts an AzureML Registry deployment template URI or a project-scoped deployment template path for VmManagedCompute.
Examples: azureml://registries/{registry}/deploymenttemplates/{template}/versions/{version}, projects/{project}/deploymentTemplates/{template}/versions/{version}
string
model AzureML Registry model asset URI. Required on creation; immutable after creation.
Example: azureml://registries/{registry}/models/{model}/versions/{version}
string (required)
priority Scheduling priority for VM-backed managed compute deployments. Immutable after creation. string
versionUpgradeOption Template auto-upgrade policy. Defaults to OnceNewDefaultVersionAvailable. 'NoAutoUpgrade'
'OnceCurrentVersionExpired'
'OnceNewDefaultVersionAvailable'

Sku

Name Description Value
capacity If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted. int
family If the service has different generations of hardware, for the same SKU, then that can be captured here. string
name The name of the SKU. Ex - P3. It is typically a letter+number code string (required)
size The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code. string
tier This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT. 'Basic'
'Enterprise'
'Free'
'Premium'
'Standard'