Microsoft.MachineLearning workspaces 2019-10-01
- Article
-
-
Bicep resource definition
The workspaces resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.MachineLearning/workspaces resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.MachineLearning/workspaces@2019-10-01' = {
location: 'string'
name: 'string'
properties: {
keyVaultIdentifierId: 'string'
ownerEmail: 'string'
userStorageAccountId: 'string'
}
sku: {
name: 'string'
tier: '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 |
sku |
The sku of the workspace. |
Sku |
tags |
Resource tags |
Dictionary of tag names and values. See Tags in templates |
Sku
Name |
Description |
Value |
name |
Name of the sku |
string |
tier |
Tier of the sku like Basic or Enterprise |
string |
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:
For a list of changed properties in each API version, see change log.
To create a Microsoft.MachineLearning/workspaces resource, add the following JSON to your template.
{
"type": "Microsoft.MachineLearning/workspaces",
"apiVersion": "2019-10-01",
"name": "string",
"location": "string",
"properties": {
"keyVaultIdentifierId": "string",
"ownerEmail": "string",
"userStorageAccountId": "string"
},
"sku": {
"name": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property values
Microsoft.MachineLearning/workspaces
Name |
Description |
Value |
apiVersion |
The api version |
'2019-10-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 |
sku |
The sku of the workspace. |
Sku |
tags |
Resource tags |
Dictionary of tag names and values. See Tags in templates |
type |
The resource type |
'Microsoft.MachineLearning/workspaces' |
Sku
Name |
Description |
Value |
name |
Name of the sku |
string |
tier |
Tier of the sku like Basic or Enterprise |
string |
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) |
The workspaces resource type can be deployed with operations that target:
For a list of changed properties in each API version, see change log.
To create a Microsoft.MachineLearning/workspaces resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.MachineLearning/workspaces@2019-10-01"
name = "string"
location = "string"
sku = {
name = "string"
tier = "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 |
sku |
The sku of the workspace. |
Sku |
tags |
Resource tags |
Dictionary of tag names and values. |
type |
The resource type |
"Microsoft.MachineLearning/workspaces@2019-10-01" |
Sku
Name |
Description |
Value |
name |
Name of the sku |
string |
tier |
Tier of the sku like Basic or Enterprise |
string |
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) |