Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / AI/ML / Azure / Azure Machine Learning Workspaces
Azure Machine Learning Workspaces logo

Microsoft Azure Azure Machine Learning Workspaces

Browse all Azure APIs
Agent-ready OpenAPI document · curated by JenticAI/MLMl Inferenceoauth220 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Provision Azure Machine Learning workspaces and their compute targets, manage region quotas and VM sizes, and read or rotate the workspace's storage and registry keys.

Use for: I need to provision a new Azure Machine Learning workspace, Attach an AKS compute target to my ML workspace, List all ML workspaces in my subscription, Get the storage account keys for a workspace

Not supported: Does not register models, run training jobs, or move data - use for AML workspace, compute, quota, and key management only.

Jentic publishes the only available OpenAPI specification for Azure Machine Learning Workspaces, keeping it validated and agent-ready. This API manages the Microsoft.MachineLearningServices/workspaces resource and the compute targets attached to it. Operators can provision a workspace, list workspaces across subscriptions or resource groups, attach compute clusters or compute instances, list available VM sizes, manage region quotas, and read or resync the workspace's storage and registry keys. All requests authenticate with Azure AD OAuth 2.0 against Azure Resource Manager.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Azure Machine Learning Workspaces to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Azure Machine Learning Workspaces, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fazure.com%2Fazure-machine-learning-workspaces" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fazure.com%2Fazure-machine-learning-workspaces" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Azure Machine Learning Workspaces API.

Provision a Microsoft.MachineLearningServices workspace inside a resource group

Attach a compute target such as AKS, AmlCompute, or ComputeInstance to a workspace

List every workspace across a subscription or scoped to a resource group

Resync the storage and container registry keys backing a workspace

Read and update region quotas for AML compute resources

List supported VM SKUs for AML compute in a region

List nodes inside an AmlCompute cluster or delete a compute target

Use Cases

Patterns agents use Azure Machine Learning Workspaces API for, with concrete tasks.

★ Workspace and Compute Bootstrap

Platform teams provision a Machine Learning workspace and its dependent compute targets in one automated run. The PUT on /workspaces/{workspaceName} creates the workspace with a managed storage account, key vault, container registry, and Application Insights component, and the PUT on /computes/{computeName} attaches an AmlCompute or AKS target for training and inference. Together these calls stand up an ML environment ready for model registration and deployment.

Create workspace 'ml-prod' in resource group 'rg-ml' in West Europe with a system-assigned managed identity, then attach an AmlCompute cluster named 'cpu-cluster' with VM size 'Standard_DS3_v2' and minNodeCount=0, maxNodeCount=4.

Quota Management Across Regions

AML compute is bounded by per-region quotas on cores per VM family. The GET on /locations/{location}/Quotas returns the current allocation, /usages reports actual consumption, and the POST on /updateQuotas raises or lowers the limit per VM family. Platform teams use this trio to track headroom before launching large training jobs and to request increases when usage approaches the cap.

Read the current AmlCompute quota for 'westeurope' and update the 'standardDSv2Family' quota from 24 to 96 cores.

Storage Key Resync After Rotation

Each AML workspace ships with a managed storage account and container registry whose keys can rotate at the storage layer. The POST on /workspaces/{workspaceName}/resyncKeys forces the workspace to re-read the latest keys, restoring jobs and pipelines that broke when the underlying credentials changed. Use this after rotating storage account keys outside of AML.

Resync keys on workspace 'ml-prod' in resource group 'rg-ml' after rotating the underlying storage account's primary key, and confirm via listKeys.

Agent-Driven Workspace Inventory

An AI agent through Jentic can enumerate every Machine Learning workspace across subscriptions, list each workspace's attached compute, and queue actions like quota updates or compute resizing. Jentic returns the operation schema for each call so the agent can drive AML control-plane work end to end without reading the AML SDK reference.

List every workspace in subscription '00000000-0000-0000-0000-000000000000', and for each, list attached computes whose vmSize is 'Standard_NC24'.

Key Endpoints

20 endpoints — jentic publishes the only available openapi specification for azure machine learning workspaces, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

PUT

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}

Create or update an AML workspace

PUT

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/computes/{computeName}

Attach a compute target

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/workspaces

List workspaces in a subscription

POST

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/listKeys

List workspace storage and registry keys

POST

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/resyncKeys

Resync workspace dependent keys

POST

/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/locations/{location}/updateQuotas

Update region AML quotas

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/locations/{location}/vmSizes

List supported AML VM sizes in a region

PUT

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}

Create or update an AML workspace

PUT

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/computes/{computeName}

Attach a compute target

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/workspaces

List workspaces in a subscription

POST

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/listKeys

List workspace storage and registry keys

POST

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/resyncKeys

Resync workspace dependent keys

POST

/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/locations/{location}/updateQuotas

Update region AML quotas

GET

/subscriptions/{subscriptionId}/providers/Microsoft.MachineLearningServices/locations/{location}/vmSizes

List supported AML VM sizes in a region

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the Microsoft.MachineLearningServices workspace control plane by hand means registering an Azure AD app, acquiring bearer tokens for management.azure.com, polling the 202 Azure-AsyncOperation responses that workspace and compute provisioning return, and reconciling region quotas and VM sizes yourself. Through Jentic you install once, import Azure Machine Learning Workspaces from the API Directory, store the Azure AD service principal credentials once, and your agent calls it.

Permission scoping

Permission scoping

This provider puts the subscription, resource group, workspace, and compute name in the URL path (/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/computes/{computeName}), so a rule can pin your agent to one workspace and its compute. You choose the operations it may call, so ones like deleting a compute, resyncing keys, or updating region quotas are not included unless you add them.

Credential management

Credential isolation

Your Azure AD service principal credentials, plus the storage and registry keys this API lists and resyncs, are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'create an Azure Machine Learning workspace' or 'attach an AmlCompute cluster', and Jentic returns the matching Microsoft.MachineLearningServices operation with its input schema so the agent calls the right endpoint without reading the AML SDK reference.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Azure Machine Learning Model Management Service

→

Manages models, images, and deployed inference services inside the workspace provisioned here.

Use after the workspace is provisioned to register and deploy models on its attached compute.

Complementary

Azure Machine Learning Datastore Management Client

→

Registers datastores against the workspace so jobs can mount training data.

Use after the workspace exists to connect storage accounts and data lakes for jobs.

Alternative

Azure Machine Learning Compute Management Client

→

Newer compute-focused control surface that overlaps with the compute endpoints exposed here.

Choose when you only need compute lifecycle and not the full workspace control plane.

FAQs

Specific to using Azure Machine Learning Workspaces API through Jentic.

Why is there no official OpenAPI spec for Azure Machine Learning Workspaces?

Microsoft Azure does not publish a single consolidated OpenAPI specification for the Microsoft.MachineLearningServices workspace control plane. Jentic generates and maintains this spec so that AI agents and developers can call Azure Machine Learning Workspaces via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Azure Machine Learning Workspaces API use?

The API uses Azure Active Directory OAuth 2.0; agents acquire a token for the https://management.azure.com/ resource and pass it as a Bearer token. Jentic stores the service principal credentials in its vault and injects scoped tokens at call time.

Can I attach an AKS cluster to a workspace through this API?

Yes. The PUT on /workspaces/{workspaceName}/computes/{computeName} accepts a properties block whose computeType field can be AKS, AmlCompute, ComputeInstance, DataFactory, Databricks, or VirtualMachine. AKS attachment expects an existing cluster's resource ID.

How do I provision a workspace through Jentic?

Search Jentic for 'create an Azure Machine Learning workspace', load the resulting PUT operation on /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}, then execute it with the workspace name, location, and identity block. Install with pip install jentic and run the async search-load-execute flow.

What is the difference between listKeys and resyncKeys?

listKeys returns the current values of the workspace's underlying storage and container registry keys; resyncKeys forces the workspace to re-read those values after they have rotated at the storage layer. Use resyncKeys when jobs start failing with auth errors after a key rotation.

What are the rate limits for this API?

Azure Resource Manager applies subscription-level throttling - typically 12,000 reads and 1,200 writes per hour per subscription. Workspace and compute provisioning are long-running and return 202 with an Azure-AsyncOperation header for polling.

Can I limit what my agent is allowed to do with the Azure Machine Learning Workspaces API?

Yes. Jentic One is self-hosted, so you run it and your own rules decide which operations and credentials your agent may use. Because this API carries the subscription, resource group, workspace, and compute name in the URL path, you can pin the agent to a single workspace and its compute targets. You also choose which operations it can call, so sensitive ones like deleting a compute, resyncing keys, or updating region quotas stay off unless you add them.

GET STARTED

Start building with Azure Machine Learning Workspaces API

Explore with Jentic One
View OpenAPI Document