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 / Cloud Infrastructure / Azure / Compute Admin Client
Compute Admin Client logo

Microsoft Azure Compute Admin Client

Browse all Azure APIs
Agent-ready OpenAPI document · curated by JenticCloud InfrastructureComputeoauth21 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Discover which Microsoft.Compute.Admin operations the Azure Stack stamp advertises before scripting fabric-side compute automation.

Use for: List the operations supported by Microsoft.Compute.Admin, Check whether the Compute Admin provider is registered on this Azure Stack stamp, Get the capability surface for the Azure Stack compute admin plane, Find deprecated Compute Admin operations between stamp versions

Not supported: Does not provision VMs, manage scale sets, attach disks, or run guest workloads - use for Microsoft.Compute.Admin operation discovery on Azure Stack only.

Jentic publishes the only available OpenAPI specification for Compute Admin Client, keeping it validated and agent-ready. The Compute Admin Client is the Azure Stack admin-plane entry point for the Microsoft.Compute.Admin resource provider. This 2015-12-01-preview revision exposes a single endpoint that returns the list of supported provider operations, used for capability discovery before invoking other Azure Stack compute admin clients. It is most useful as a probe ahead of automating compute-side fabric tasks on a stamp.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Compute Admin Client to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Compute Admin Client, 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%2Fcompute-admin-client" | 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%2Fcompute-admin-client" | 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 Compute Admin Client API.

List the provider operations advertised by Microsoft.Compute.Admin on a stamp

Use the operations response as a capability probe before scripting Azure Stack fabric tasks

Diff supported operations across stamp versions to detect deprecated actions

Confirm the Compute Admin resource provider is registered before chaining into disk or quota admin calls

Use Cases

Patterns agents use Compute Admin Client API for, with concrete tasks.

★ Pre-flight capability probe for stamp automation

Before an operator script attempts to call a specific Microsoft.Compute.Admin action, it should confirm the action is advertised on the target stamp. The Compute Admin Client's operations endpoint returns the registered set, so a runbook can fail fast with a clear message if a stamp is older than expected and the desired action is missing.

GET /providers/Microsoft.Compute.Admin/operations on the stamp and assert that the response contains the operation names the runbook depends on.

Detect drift across Azure Stack stamps

Operators running multiple Azure Stack stamps need to know when the supported Compute Admin surface changes - for example after an update package is applied. Calling this endpoint on each stamp and diffing the results highlights newly available or deprecated operations and feeds the change into a compatibility report.

Call /providers/Microsoft.Compute.Admin/operations on each registered stamp and emit a diff of operation names against a reference baseline.

Provider registration sanity check

If a downstream Azure Stack admin script is failing with 404s, the simplest first check is whether Microsoft.Compute.Admin is even registered on the stamp. A successful call to the operations endpoint confirms registration; a non-success surface lets an agent escalate to the operator with a precise diagnosis.

Call GET /providers/Microsoft.Compute.Admin/operations and report whether the response is 200 with a non-empty operation list.

Agent-driven capability discovery via Jentic

An AI agent integrated through Jentic can use the Compute Admin Client as the first hop in any Azure Stack compute admin workflow - discovering operations, then chaining into Compute Disk Admin or Compute Management for the actual fabric-side action. Intent-based search means the agent does not have to memorise admin-plane paths.

From an agent loop, first call /providers/Microsoft.Compute.Admin/operations to confirm capability, then route to the matching Compute Disk Admin or Compute Management operation.

Key Endpoints

1 endpoints — jentic publishes the only available openapi specification for compute admin client, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/providers/Microsoft.Compute.Admin/operations

List supported Microsoft.Compute.Admin operations

GET

/providers/Microsoft.Compute.Admin/operations

List supported Microsoft.Compute.Admin operations

Why Jentic?

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

Setup

Setup

Wiring the Compute Admin Client by hand means configuring Azure AD OAuth2 and pointing it at the Azure Stack admin host adminmanagement.local.azurestack.external rather than public Azure, then constructing the Microsoft.Compute.Admin operations path yourself. Through Jentic you install once, import the Compute Admin Client from the API Directory, store the Azure AD credential once, and your agent calls it.

Permission scoping

Permission scoping

This API exposes a single read operation, GET /providers/Microsoft.Compute.Admin/operations, that enumerates the available compute admin operations, so limit the agent to that operation. It does not provision VMs or attach disks, so no write or destructive action is reachable unless you add such operations.

Credential management

Credential isolation

Your Azure AD credential is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'list Azure Stack compute admin operations', and Jentic returns the Operations_List operation with its input schema so the agent calls the right admin endpoint without browsing the Microsoft.Compute.Admin reference.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

ComputeDiskAdminManagementClient

→

Companion Azure Stack admin client for compute disk migration jobs

Choose Compute Disk Admin when the agent needs to manage actual disk-migration jobs after the capability probe succeeds

Alternative

Compute Management Client

→

Public Azure equivalent for VM, scale set, and disk provisioning

Choose Compute Management Client when the agent is operating on public Azure rather than an Azure Stack stamp

Complementary

Commerce Management Client

→

Sister Azure Stack admin client for usage aggregates on the same stamp

Choose Commerce Management when the agent needs billing or usage data from the same Azure Stack stamp

FAQs

Specific to using Compute Admin Client API through Jentic.

Why is there no official OpenAPI spec for Compute Admin Client?

Microsoft does not publish a consolidated OpenAPI specification for the Azure Stack Compute Admin provider. Jentic generates and maintains this spec so that AI agents and developers can call Compute Admin Client 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 Compute Admin Client use?

It uses Azure Active Directory OAuth 2.0 with the implicit flow at https://login.microsoftonline.com/common/oauth2/authorize and the user_impersonation scope. The caller must be an Azure Stack operator. Through Jentic the AAD token is held in the encrypted vault and never enters the agent context.

Can I provision VMs with the Compute Admin Client?

No. This 2015-12-01-preview revision only exposes /providers/Microsoft.Compute.Admin/operations - a capability-discovery endpoint. To provision VMs use the public Compute Management Client (computemanagementclient) against management.azure.com.

What are the rate limits for the Compute Admin Client?

The Azure Stack admin plane inherits Azure Resource Manager subscription-level throttling. The spec does not declare separate headers; expect ARM 429 responses under sustained load.

How do I check Compute Admin operations through Jentic?

Search Jentic for 'list compute admin operations', load the schema for GET /providers/Microsoft.Compute.Admin/operations, and execute it. Run pip install jentic to get the SDK and feed the result into your runbook as a capability gate.

Is the Compute Admin Client free?

Calling the admin operations endpoint itself is free; you only need an Azure Stack operator role. Costs come from running the Azure Stack stamp, not from calling this API.

Can I limit what my agent is allowed to do with the Compute Admin Client?

Yes. Because you run Jentic One yourself, your own rules decide which operations and credentials the agent may use, so you can restrict it to only GET /providers/Microsoft.Compute.Admin/operations, the single read operation this API exposes. That endpoint just enumerates the available Microsoft.Compute.Admin operations on an Azure Stack stamp; it does not provision VMs or attach disks, so no write or destructive action is reachable through it. Your Azure AD credential is stored encrypted by your own instance and injected only at execution time, so it never enters the agent's prompt or logs.

GET STARTED

Start building with Compute Admin Client API

Explore with Jentic One
View OpenAPI Document