Microsoft.MachineLearningServices workspaces/linkedServices 2020-09-01-preview

Bicep resource definition

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

resource symbolicname 'Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview' = {
  identity: {
    type: 'string'
    userAssignedIdentities: {
      {customized property}: {}
    }
  }
  location: 'string'
  name: 'string'
  properties: {
    createdTime: 'string'
    linkedServiceResourceId: 'string'
    linkType: 'Synapse'
    modifiedTime: 'string'
  }
}

Property values

Identity

Name Description Value
type The identity type. 'None'
'SystemAssigned'
'SystemAssigned,UserAssigned'
'UserAssigned'
userAssignedIdentities The user assigned identities associated with the resource. UserAssignedIdentities

LinkedServiceProps

Name Description Value
createdTime The creation time of the linked service. string
linkedServiceResourceId ResourceId of the link target of the linked service. string (required)
linkType Type of the link target. 'Synapse'
modifiedTime The last modified time of the linked service. string

Microsoft.MachineLearningServices/workspaces/linkedServices

Name Description Value
identity Identity for the resource. Identity
location location of the linked service. string
name The resource name 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: workspaces
properties LinkedService specific properties. LinkedServiceProps

UserAssignedIdentities

Name Description Value

UserAssignedIdentity

Name Description Value

ARM template resource definition

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

{
  "type": "Microsoft.MachineLearningServices/workspaces/linkedServices",
  "apiVersion": "2020-09-01-preview",
  "name": "string",
  "identity": {
    "type": "string",
    "userAssignedIdentities": {
      "{customized property}": {
      }
    }
  },
  "location": "string",
  "properties": {
    "createdTime": "string",
    "linkedServiceResourceId": "string",
    "linkType": "Synapse",
    "modifiedTime": "string"
  }
}

Property values

Identity

Name Description Value
type The identity type. 'None'
'SystemAssigned'
'SystemAssigned,UserAssigned'
'UserAssigned'
userAssignedIdentities The user assigned identities associated with the resource. UserAssignedIdentities

LinkedServiceProps

Name Description Value
createdTime The creation time of the linked service. string
linkedServiceResourceId ResourceId of the link target of the linked service. string (required)
linkType Type of the link target. 'Synapse'
modifiedTime The last modified time of the linked service. string

Microsoft.MachineLearningServices/workspaces/linkedServices

Name Description Value
apiVersion The api version '2020-09-01-preview'
identity Identity for the resource. Identity
location location of the linked service. string
name The resource name string (required)
properties LinkedService specific properties. LinkedServiceProps
type The resource type 'Microsoft.MachineLearningServices/workspaces/linkedServices'

UserAssignedIdentities

Name Description Value

UserAssignedIdentity

Name Description Value

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Create a LinkedService in Azure Machine Learning workspace

Deploy to Azure
This template creates a LinkedService in an existing Azure Machine Learning workspace.

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview"
  name = "string"
  identity = {
    type = "string"
    userAssignedIdentities = {
      {customized property} = {
      }
    }
  }
  location = "string"
  body = jsonencode({
    properties = {
      createdTime = "string"
      linkedServiceResourceId = "string"
      linkType = "Synapse"
      modifiedTime = "string"
    }
  })
}

Property values

Identity

Name Description Value
type The identity type. 'None'
'SystemAssigned'
'SystemAssigned,UserAssigned'
'UserAssigned'
userAssignedIdentities The user assigned identities associated with the resource. UserAssignedIdentities

LinkedServiceProps

Name Description Value
createdTime The creation time of the linked service. string
linkedServiceResourceId ResourceId of the link target of the linked service. string (required)
linkType Type of the link target. 'Synapse'
modifiedTime The last modified time of the linked service. string

Microsoft.MachineLearningServices/workspaces/linkedServices

Name Description Value
identity Identity for the resource. Identity
location location of the linked service. string
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: workspaces
properties LinkedService specific properties. LinkedServiceProps
type The resource type "Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview"

UserAssignedIdentities

Name Description Value

UserAssignedIdentity

Name Description Value