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 / Security / Azure / KeyVaultManagementClient
KeyVaultManagementClient logo

Microsoft Azure KeyVaultManagementClient

Browse all Azure APIs
Agent-ready OpenAPI document · curated by JenticSecuritySecrets Managementoauth21 EndpointsREST

Know of an official OpenAPI document? Contribute it →

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.

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 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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the KeyVaultManagementClient to your agent

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.

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-keyvaultmanagementclient" | 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-keyvaultmanagementclient" | 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 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

Confirm Microsoft.KeyVault.Admin provider availability during Azure Stack Hub deployment validation

Use Cases

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 your Jentic One instance.

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.

Key Endpoints

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

METHOD

PATH

DESCRIPTION

GET

/providers/Microsoft.KeyVault.Admin/operations

List Microsoft.KeyVault.Admin provider operations

GET

/providers/Microsoft.KeyVault.Admin/operations

List Microsoft.KeyVault.Admin provider operations

Why Jentic?

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

Setup

Setup

Wiring this Azure Stack Key Vault admin API by hand means registering an Azure AD app against your Azure Stack management endpoint, negotiating OAuth 2.0 tokens, and pointing calls at the management.local.azurestack.external host. Through Jentic you install once, import KeyVaultManagementClient 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 that lists Microsoft.KeyVault.Admin provider operations, so limit the agent to the operation it needs, which is listing those provider operations. You choose the operations it may call, so nothing beyond that read is included unless you add it.

Credential management

Credential isolation

Your Azure AD credential for the Azure Stack admin surface 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 Key Vault admin operations', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

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.

Complementary

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.

Complementary

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.

FAQs

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 with Jentic One, the self-hosted execution layer.

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 your Jentic One instance 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.

Can I limit what my agent is allowed to do with the Microsoft Azure Key Vault admin API?

Yes. Because Jentic One is self-hosted, you decide which operations your agent may call, and this API exposes only one read operation, GET /providers/Microsoft.KeyVault.Admin/operations, which lists the provider's admin operation catalog. You can restrict the agent to that single read so it can enumerate Microsoft.KeyVault.Admin operations but cannot create vaults, manage keys, or read secrets. The Azure AD credential is held by your own Jentic One instance and injected only at call time, so the agent never sees it and can act only within the scope you set.

GET STARTED

Start building with KeyVaultManagementClient API

Explore with Jentic One
View OpenAPI Document