Microsoft.MachineLearning workspaces 2016-04-01
Bicep resource definition
The workspaces 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.MachineLearning/workspaces resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.MachineLearning/workspaces@2016-04-01' = {
location: 'string'
name: 'string'
properties: {
keyVaultIdentifierId: 'string'
ownerEmail: 'string'
userStorageAccountId: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property values
Microsoft.MachineLearning/workspaces
Name | Description | Value |
---|---|---|
location | The location of the resource. This cannot be changed after the resource is created. | string (required) |
name | The resource name | string (required) |
properties | The properties of the machine learning workspace. | WorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ResourceTags
Name | Description | Value |
---|
WorkspaceProperties
Name | Description | Value |
---|---|---|
keyVaultIdentifierId | The key vault identifier used for encrypted workspaces. | string |
ownerEmail | The email id of the owner for this workspace. | string (required) |
userStorageAccountId | The fully qualified arm id of the storage account associated with this workspace. | string (required) |
ARM template resource definition
The workspaces 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.MachineLearning/workspaces resource, add the following JSON to your template.
{
"type": "Microsoft.MachineLearning/workspaces",
"apiVersion": "2016-04-01",
"name": "string",
"location": "string",
"properties": {
"keyVaultIdentifierId": "string",
"ownerEmail": "string",
"userStorageAccountId": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property values
Microsoft.MachineLearning/workspaces
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2016-04-01' |
location | The location of the resource. This cannot be changed after the resource is created. | string (required) |
name | The resource name | string (required) |
properties | The properties of the machine learning workspace. | WorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.MachineLearning/workspaces' |
ResourceTags
Name | Description | Value |
---|
WorkspaceProperties
Name | Description | Value |
---|---|---|
keyVaultIdentifierId | The key vault identifier used for encrypted workspaces. | string |
ownerEmail | The email id of the owner for this workspace. | string (required) |
userStorageAccountId | The fully qualified arm id of the storage account associated with this workspace. | string (required) |
Terraform (AzAPI provider) resource definition
The workspaces 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.MachineLearning/workspaces resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.MachineLearning/workspaces@2016-04-01"
name = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
keyVaultIdentifierId = "string"
ownerEmail = "string"
userStorageAccountId = "string"
}
})
}
Property values
Microsoft.MachineLearning/workspaces
Name | Description | Value |
---|---|---|
location | The location of the resource. This cannot be changed after the resource is created. | string (required) |
name | The resource name | string (required) |
properties | The properties of the machine learning workspace. | WorkspaceProperties |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.MachineLearning/workspaces@2016-04-01" |
ResourceTags
Name | Description | Value |
---|
WorkspaceProperties
Name | Description | Value |
---|---|---|
keyVaultIdentifierId | The key vault identifier used for encrypted workspaces. | string |
ownerEmail | The email id of the owner for this workspace. | string (required) |
userStorageAccountId | The fully qualified arm id of the storage account associated with this workspace. | string (required) |