Microsoft.MachineLearningServices workspaces/environments/versions 2022-10-01

Bicep resource definition

The workspaces/environments/versions 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.MachineLearningServices/workspaces/environments/versions resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.MachineLearningServices/workspaces/environments/versions@2022-10-01' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    autoRebuild: 'string'
    build: {
      contextUri: 'string'
      dockerfilePath: 'string'
    }
    condaFile: 'string'
    description: 'string'
    image: 'string'
    inferenceConfig: {
      livenessRoute: {
        path: 'string'
        port: int
      }
      readinessRoute: {
        path: 'string'
        port: int
      }
      scoringRoute: {
        path: 'string'
        port: int
      }
    }
    isAnonymous: bool
    isArchived: bool
    osType: 'string'
    properties: {
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
    }
    tags: {
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
      {customized property}: 'string'
    }
  }
}

Property values

workspaces/environments/versions

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (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: environments
properties [Required] Additional attributes of the entity. EnvironmentVersionProperties (required)

EnvironmentVersionProperties

Name Description Value
autoRebuild Defines if image needs to be rebuilt based on base image changes. 'Disabled'
'OnBaseImageUpdate'
build Configuration settings for Docker build context. BuildContext
condaFile Standard configuration file used by Conda that lets you install any kind of package, including Python, R, and C/C++ packages.
{see href="https://repo2docker.readthedocs.io/en/latest/config_files.html#environment-yml-install-a-conda-environment" /}
string
description The asset description text. string
image Name of the image that will be used for the environment.
{seealso href="https://docs.microsoft.com/azure/machine-learning/how-to-deploy-custom-docker-image#use-a-custom-base-image" /}
string
inferenceConfig Defines configuration specific to inference. InferenceContainerProperties
isAnonymous If the name version are system generated (anonymous registration). bool
isArchived Is the asset archived? bool
osType The OS type of the environment. 'Linux'
'Windows'
properties The asset property dictionary. ResourceBaseProperties
tags Tag dictionary. Tags can be added, removed, and updated. object

BuildContext

Name Description Value
contextUri [Required] URI of the Docker build context used to build the image. Supports blob URIs on environment creation and may return blob or Git URIs.
{seealso href="https://docs.docker.com/engine/reference/commandline/build/#extended-description" /}
string (required)

Constraints:
Pattern = [a-zA-Z0-9_]
dockerfilePath Path to the Dockerfile in the build context.
{seealso href="https://docs.docker.com/engine/reference/builder/" /}
string

InferenceContainerProperties

Name Description Value
livenessRoute The route to check the liveness of the inference server container. Route
readinessRoute The route to check the readiness of the inference server container. Route
scoringRoute The port to send the scoring requests to, within the inference server container. Route

Route

Name Description Value
path [Required] The path for the route. string (required)

Constraints:
Pattern = [a-zA-Z0-9_]
port [Required] The port for the route. int (required)

ResourceBaseProperties

Name Description Value
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string

ARM template resource definition

The workspaces/environments/versions 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.MachineLearningServices/workspaces/environments/versions resource, add the following JSON to your template.

{
  "type": "Microsoft.MachineLearningServices/workspaces/environments/versions",
  "apiVersion": "2022-10-01",
  "name": "string",
  "properties": {
    "autoRebuild": "string",
    "build": {
      "contextUri": "string",
      "dockerfilePath": "string"
    },
    "condaFile": "string",
    "description": "string",
    "image": "string",
    "inferenceConfig": {
      "livenessRoute": {
        "path": "string",
        "port": "int"
      },
      "readinessRoute": {
        "path": "string",
        "port": "int"
      },
      "scoringRoute": {
        "path": "string",
        "port": "int"
      }
    },
    "isAnonymous": "bool",
    "isArchived": "bool",
    "osType": "string",
    "properties": {
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string"
    },
    "tags": {
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string",
      "{customized property}": "string"
    }
  }
}

Property values

workspaces/environments/versions

Name Description Value
type The resource type 'Microsoft.MachineLearningServices/workspaces/environments/versions'
apiVersion The resource api version '2022-10-01'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
properties [Required] Additional attributes of the entity. EnvironmentVersionProperties (required)

EnvironmentVersionProperties

Name Description Value
autoRebuild Defines if image needs to be rebuilt based on base image changes. 'Disabled'
'OnBaseImageUpdate'
build Configuration settings for Docker build context. BuildContext
condaFile Standard configuration file used by Conda that lets you install any kind of package, including Python, R, and C/C++ packages.
{see href="https://repo2docker.readthedocs.io/en/latest/config_files.html#environment-yml-install-a-conda-environment" /}
string
description The asset description text. string
image Name of the image that will be used for the environment.
{seealso href="https://docs.microsoft.com/azure/machine-learning/how-to-deploy-custom-docker-image#use-a-custom-base-image" /}
string
inferenceConfig Defines configuration specific to inference. InferenceContainerProperties
isAnonymous If the name version are system generated (anonymous registration). bool
isArchived Is the asset archived? bool
osType The OS type of the environment. 'Linux'
'Windows'
properties The asset property dictionary. ResourceBaseProperties
tags Tag dictionary. Tags can be added, removed, and updated. object

BuildContext

Name Description Value
contextUri [Required] URI of the Docker build context used to build the image. Supports blob URIs on environment creation and may return blob or Git URIs.
{seealso href="https://docs.docker.com/engine/reference/commandline/build/#extended-description" /}
string (required)

Constraints:
Pattern = [a-zA-Z0-9_]
dockerfilePath Path to the Dockerfile in the build context.
{seealso href="https://docs.docker.com/engine/reference/builder/" /}
string

InferenceContainerProperties

Name Description Value
livenessRoute The route to check the liveness of the inference server container. Route
readinessRoute The route to check the readiness of the inference server container. Route
scoringRoute The port to send the scoring requests to, within the inference server container. Route

Route

Name Description Value
path [Required] The path for the route. string (required)

Constraints:
Pattern = [a-zA-Z0-9_]
port [Required] The port for the route. int (required)

ResourceBaseProperties

Name Description Value
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string

Terraform (AzAPI provider) resource definition

The workspaces/environments/versions 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.MachineLearningServices/workspaces/environments/versions resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.MachineLearningServices/workspaces/environments/versions@2022-10-01"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      autoRebuild = "string"
      build = {
        contextUri = "string"
        dockerfilePath = "string"
      }
      condaFile = "string"
      description = "string"
      image = "string"
      inferenceConfig = {
        livenessRoute = {
          path = "string"
          port = int
        }
        readinessRoute = {
          path = "string"
          port = int
        }
        scoringRoute = {
          path = "string"
          port = int
        }
      }
      isAnonymous = bool
      isArchived = bool
      osType = "string"
      properties = {
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
      }
      tags = {
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
        {customized property} = "string"
      }
    }
  })
}

Property values

workspaces/environments/versions

Name Description Value
type The resource type "Microsoft.MachineLearningServices/workspaces/environments/versions@2022-10-01"
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: environments
properties [Required] Additional attributes of the entity. EnvironmentVersionProperties (required)

EnvironmentVersionProperties

Name Description Value
autoRebuild Defines if image needs to be rebuilt based on base image changes. "Disabled"
"OnBaseImageUpdate"
build Configuration settings for Docker build context. BuildContext
condaFile Standard configuration file used by Conda that lets you install any kind of package, including Python, R, and C/C++ packages.
{see href="https://repo2docker.readthedocs.io/en/latest/config_files.html#environment-yml-install-a-conda-environment" /}
string
description The asset description text. string
image Name of the image that will be used for the environment.
{seealso href="https://docs.microsoft.com/azure/machine-learning/how-to-deploy-custom-docker-image#use-a-custom-base-image" /}
string
inferenceConfig Defines configuration specific to inference. InferenceContainerProperties
isAnonymous If the name version are system generated (anonymous registration). bool
isArchived Is the asset archived? bool
osType The OS type of the environment. "Linux"
"Windows"
properties The asset property dictionary. ResourceBaseProperties
tags Tag dictionary. Tags can be added, removed, and updated. object

BuildContext

Name Description Value
contextUri [Required] URI of the Docker build context used to build the image. Supports blob URIs on environment creation and may return blob or Git URIs.
{seealso href="https://docs.docker.com/engine/reference/commandline/build/#extended-description" /}
string (required)

Constraints:
Pattern = [a-zA-Z0-9_]
dockerfilePath Path to the Dockerfile in the build context.
{seealso href="https://docs.docker.com/engine/reference/builder/" /}
string

InferenceContainerProperties

Name Description Value
livenessRoute The route to check the liveness of the inference server container. Route
readinessRoute The route to check the readiness of the inference server container. Route
scoringRoute The port to send the scoring requests to, within the inference server container. Route

Route

Name Description Value
path [Required] The path for the route. string (required)

Constraints:
Pattern = [a-zA-Z0-9_]
port [Required] The port for the route. int (required)

ResourceBaseProperties

Name Description Value
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string
{customized property} string