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
@@ -1,4 +1,4 @@
{

Check notice on line 1 in specification/machinelearningservices/resource-manager/Microsoft.MachineLearningServices/stable/2025-04-01/registries.json

View workflow job for this annotation

GitHub Actions / TypeSpec Requirement

Brownfield services will soon be required to convert from OpenAPI to TypeSpec. See https://aka.ms/azsdk/typespec.
"swagger": "2.0",
"info": {
"title": "Azure Machine Learning Services",
Expand Down Expand Up @@ -632,6 +632,11 @@
"$ref": "#/definitions/ArmResourceId",
"x-nullable": true
},
"managedResourceGroupSettings": {
"description": "Managed resource group specific settings",
"$ref": "#/definitions/ManagedResourceGroupSettings",
"x-nullable": true
},
"mlFlowRegistryUri": {
"description": "MLFlow Registry URI for the Registry",
"type": "string",
Expand Down Expand Up @@ -693,6 +698,35 @@
},
"additionalProperties": false
},
"ManagedResourceGroupSettings": {
"description": "Managed resource group settings",
"type": "object",
"properties": {
"assignedIdentities": {
"description": "List of assigned identities for the managed resource group",
"type": "array",
"items": {
"$ref": "#/definitions/ManagedResourceGroupAssignedIdentities"
},
"x-nullable": true,
"x-ms-identifiers": []
}
},
"additionalProperties": false
},
"ManagedResourceGroupAssignedIdentities": {
"description": "Details for managed resource group assigned identities.",
"type": "object",
"properties": {
"principalId": {
"description": "Identity principal Id",
"type": "string",
"x-nullable": false,
"readOnly": true
}
},
"additionalProperties": false
},
"RegistryTrackedResource": {
"required": [
"location",
Expand Down Expand Up @@ -830,4 +864,3 @@
}
}
}