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 workspaces/linkedServices 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.MachineLearningServices/workspaces/linkedServices resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.MachineLearningServices/workspaces/linkedServices@2020-09-01-preview' = {
parent: resourceSymbolicName
identity: {
type: 'string'
userAssignedIdentities: {
{customized property}: {}
}
}
location: 'string'
name: 'string'
properties: {
createdTime: 'string'
linkedServiceResourceId: 'string'
linkType: 'Synapse'
modifiedTime: 'string'
}
}
Property Values
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 |
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 |
UserAssignedIdentities
Name | Description | Value |
---|
UserAssignedIdentity
Name | Description | Value |
---|
ARM template resource definition
The workspaces/linkedServices 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.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
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' |
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 |
UserAssignedIdentities
Name | Description | Value |
---|
UserAssignedIdentity
Name | Description | Value |
---|
Usage Examples
Azure Quickstart Templates
The following Azure Quickstart templates deploy this resource type.
Template | Description |
---|---|
Create a LinkedService in Azure Machine Learning workspace |
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"
parent_id = "string"
identity {
type = "string"
identity_ids = [
"string"
]
}
location = "string"
body = {
properties = {
createdTime = "string"
linkedServiceResourceId = "string"
linkType = "Synapse"
modifiedTime = "string"
}
}
}
Property Values
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" |
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 |
UserAssignedIdentities
Name | Description | Value |
---|
UserAssignedIdentity
Name | Description | Value |
---|