Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -479,6 +479,9 @@
],
"description": "Managed service identity (system assigned and/or user assigned identities)"
},
"kind": {
"type": "string"
},
"location": {
"type": "string",
"description": "Specifies the location of the resource."
Expand Down Expand Up @@ -2960,6 +2963,14 @@
},
"description": "Machine Learning compute object."
},
"ComputeRuntimeDto": {
"type": "object",
"properties": {
"sparkRuntimeVersion": {
"type": "string"
}
}
},
"ContainerResourceRequirements": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -3709,6 +3720,37 @@
},
"description": "Environment version details."
},
"FeatureStoreSettings": {
"type": "object",
"properties": {
"allowRoleAssignmentsOnResourceGroupLevel": {
"oneOf": [
{
"type": "boolean"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"computeRuntime": {
"oneOf": [
{
"$ref": "#/definitions/ComputeRuntimeDto"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"offlineStoreConnectionName": {
"type": "string"
},
"onlineStoreConnectionName": {
"type": "string"
}
}
},
"FlavorData": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -7538,7 +7580,11 @@
"S3",
"Snowflake",
"AzureSqlDb",
"AzureSynapseAnalytics"
"AzureSynapseAnalytics",
"AzureMySqlDb",
"AzurePostgresDb",
"AzureDataLakeGen2",
"Redis"
]
},
{
Expand Down Expand Up @@ -7643,6 +7689,16 @@
}
]
},
"featureStoreSettings": {
"oneOf": [
{
"$ref": "#/definitions/FeatureStoreSettings"
},
{
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
}
]
},
"friendlyName": {
"type": "string",
"description": "The friendly name for this workspace. This name in mutable"
Expand Down