For Agents
List the available admin operations exposed by the Microsoft.KeyVault.Admin resource provider on Azure Stack Hub. Use for provider capability discovery, not for managing vaults, keys, or secrets.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the KeyVaultManagementClient, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register # connects your agent to your Jentic One instanceJentic 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.
What an agent can do with KeyVaultManagementClient API.
List the admin operations catalog exposed by the Microsoft.KeyVault.Admin resource provider
Discover which Key Vault administrative actions are available on a given Azure Stack Hub deployment
Audit the resource-provider operation surface for Azure Stack Key Vault compliance reviews
Verify Key Vault admin RBAC scope by enumerating provider operations before assigning roles
GET STARTED
Use for: List all admin operations supported by the Azure Stack Key Vault resource provider, Check whether the Microsoft.KeyVault.Admin provider is registered on this Azure Stack Hub, Retrieve the operation catalog for Key Vault admin RBAC role mapping, Find all Key Vault administrative actions available for compliance review
Not supported: Does not handle vault creation, key operations, secret storage, or certificate management — use only for listing Microsoft.KeyVault.Admin provider operations on Azure Stack Hub.
Jentic publishes the only available OpenAPI document for KeyVaultManagementClient, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for KeyVaultManagementClient, keeping it validated and agent-ready. KeyVaultManagementClient is the Azure Stack admin control-plane API for the Microsoft.KeyVault.Admin resource provider. It exposes the operations catalog used by Azure Stack Hub administrators to inspect what management actions the local Key Vault provider supports. The surface is intentionally narrow and is designed for hub-level introspection rather than vault, key, or secret data operations.
Confirm Microsoft.KeyVault.Admin provider availability during Azure Stack Hub deployment validation
Patterns agents use KeyVaultManagementClient API for, with concrete tasks.
★ Azure Stack Hub Provider Discovery
Operators running Azure Stack Hub need to confirm which administrative operations are exposed by the Microsoft.KeyVault.Admin resource provider before authoring custom RBAC roles or admin runbooks. This API returns the operations catalog so administrators know exactly what action strings (for example, Microsoft.KeyVault.Admin/operations/read) can be used in role definitions. The endpoint is read-only and returns within milliseconds.
Call GET /providers/Microsoft.KeyVault.Admin/operations and return the list of operation names so the agent can build a custom RBAC role definition for a Key Vault administrator on Azure Stack Hub.
Compliance and Audit Reviews
Security teams auditing Azure Stack Hub deployments need a deterministic list of every administrative action the Key Vault provider can expose. Calling Operations_List gives auditors the canonical action namespace so they can map RBAC assignments back to documented operations and flag drift. No vault data is returned, so the call is safe for read-only audit accounts.
Fetch the Microsoft.KeyVault.Admin operations list and produce a CSV of operation names mapped to existing RBAC role assignments for the audit report.
Agent-Driven Azure Stack Tooling
AI agents building tooling around Azure Stack Hub use Jentic to discover the Microsoft.KeyVault.Admin operation list without scraping Microsoft documentation. The agent searches for a Key Vault admin discovery query, Jentic returns the structured operation, and the agent executes the call against an Azure Stack management endpoint with an OAuth 2.0 token from the Jentic vault.
Use Jentic search to locate the KeyVaultManagementClient Operations_List endpoint, load its schema, and execute the call against the Azure Stack Hub admin management endpoint, returning the operation names to the orchestrator.
1 endpoints — jentic publishes the only available openapi specification for keyvaultmanagementclient, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/providers/Microsoft.KeyVault.Admin/operations
List Microsoft.KeyVault.Admin provider operations
/providers/Microsoft.KeyVault.Admin/operations
List Microsoft.KeyVault.Admin provider operations
Three things that make agents converge on Jentic-routed access.
Credential isolation
Azure Active Directory OAuth 2.0 client credentials and refresh tokens are stored encrypted in the Jentic vault. Agents receive a short-lived scoped access token for the Azure Stack admin endpoint at call time — the client secret never enters the agent's context.
Intent-based discovery
Agents search by intent (for example, 'list azure stack key vault admin operations') and Jentic returns the Operations_List operation with its full input schema, so the agent can call the endpoint without scraping Microsoft Docs.
Time to first call
Direct Azure Stack admin integration: 1-2 days for AAD app registration, token acquisition, and admin endpoint resolution. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
KeyVaultClient
The data-plane API for managing keys, secrets, and certificates inside a vault.
Choose KeyVaultClient when the task is reading or writing secrets, signing with keys, or managing certificates — not for listing admin operations.
ManagedServiceIdentityClient
Provisions user-assigned managed identities that often need access to Key Vault.
Use when the agent needs to grant a managed identity access to a Key Vault rather than enumerate provider operations.
PolicyClient
Define and enforce Azure policies, including compliance checks against Key Vault provider actions.
Use when wrapping the Key Vault operation namespace into a compliance policy assignment.
Specific to using KeyVaultManagementClient API through Jentic.
Why is there no official OpenAPI spec for KeyVaultManagementClient?
Microsoft Azure does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call KeyVaultManagementClient via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the KeyVaultManagementClient use?
It uses Azure Active Directory OAuth 2.0 bearer tokens scoped to the Azure Stack Hub admin management endpoint. Through Jentic, the OAuth client credentials and access tokens are stored encrypted in the Jentic vault and never appear in the agent's context — agents receive scoped tokens only at call time.
Can I manage vaults, keys, or secrets with the KeyVaultManagementClient?
No. This client only exposes GET /providers/Microsoft.KeyVault.Admin/operations, which returns the provider's operation catalog. To create vaults, manage keys, or read secrets you need the Azure Resource Manager Key Vault management API and the Key Vault data-plane API.
What are the rate limits for the KeyVaultManagementClient?
Azure Resource Manager applies subscription-level throttling — typically 12,000 read requests per hour per subscription per region, with 429 responses including a Retry-After header. The single operations endpoint is rarely a bottleneck in practice.
How do I list Key Vault admin operations through Jentic?
Run pip install jentic, then search Jentic for 'list azure stack key vault admin operations'. Jentic returns the Operations_List schema, after which the agent loads it and executes a GET against /providers/Microsoft.KeyVault.Admin/operations on your Azure Stack management endpoint.
Is the KeyVaultManagementClient API free to use?
The API itself is included with Azure Stack Hub — there is no per-call charge for the operations endpoint. Underlying Azure Stack Hub licensing and support agreements still apply.