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' = {
  name: 'string'
  location: 'string'
  parent: resourceSymbolicName
  identity: {
    type: 'string'
    userAssignedIdentities: {
      {customized property}: {}
    }
  }
  properties: {
    createdTime: 'string'
    linkedServiceResourceId: 'string'
    linkType: 'Synapse'
    modifiedTime: 'string'
  }
}

Property values

workspaces/linkedServices

Name Description Value
name The resource name

See how to set names and types for child resources in Bicep.
string (required)
location location of the linked service. string
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
identity Identity for the resource. Identity
properties LinkedService specific properties. LinkedServiceProps

Identity

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

UserAssignedIdentities

Name Description Value
{customized property} UserAssignedIdentity

UserAssignedIdentity

This object doesn't contain any properties to set during deployment. All properties are ReadOnly.

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

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.

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",
  "location": "string",
  "identity": {
    "type": "string",
    "userAssignedIdentities": {
      "{customized property}": {}
    }
  },
  "properties": {
    "createdTime": "string",
    "linkedServiceResourceId": "string",
    "linkType": "Synapse",
    "modifiedTime": "string"
  }
}

Property values

workspaces/linkedServices

Name Description Value
type The resource type 'Microsoft.MachineLearningServices/workspaces/linkedServices'
apiVersion The resource api version '2020-09-01-preview'
name The resource name

See how to set names and types for child resources in JSON ARM templates.
string (required)
location location of the linked service. string
identity Identity for the resource. Identity
properties LinkedService specific properties. LinkedServiceProps

Identity

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

UserAssignedIdentities

Name Description Value
{customized property} UserAssignedIdentity

UserAssignedIdentity

This object doesn't contain any properties to set during deployment. All properties are ReadOnly.

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

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"
  location = "string"
  parent_id = "string"
  identity {
    type = "string"
    identity_ids = []
  }
  body = jsonencode({
    properties = {
      createdTime = "string"
      linkedServiceResourceId = "string"
      linkType = "Synapse"
      modifiedTime = "string"
    }
  })
}

Property values

workspaces/linkedServices

Name Description Value
type The resource type "Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview"
name The resource name string (required)
location location of the linked service. string
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: workspaces
identity Identity for the resource. Identity
properties LinkedService specific properties. LinkedServiceProps

Identity

Name Description Value
type The identity type. "SystemAssigned"
"SystemAssigned,UserAssigned"
"UserAssigned"
identity_ids The user assigned identities associated with the resource. Array of user identity IDs.

UserAssignedIdentities

Name Description Value
{customized property} UserAssignedIdentity

UserAssignedIdentity

This object doesn't contain any properties to set during deployment. All properties are ReadOnly.

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