For Agents
Lists the available Microsoft.Update.Admin resource provider operations on an Azure Stack Hub admin endpoint for capability discovery and admin tooling.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the UpdateAdminClient, 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 UpdateAdminClient API.
Enumerate every operation exposed by the Microsoft.Update.Admin resource provider on an Azure Stack Hub region
Drive capability discovery for admin tooling that needs to know which Update Admin actions are available before invoking them
Generate documentation tables of Update Admin operations directly from the live Stack Hub region rather than static docs
Validate that the Microsoft.Update.Admin RP is registered and reachable on a freshly built Azure Stack Hub stamp
GET STARTED
Use for: List all operations the Microsoft.Update.Admin resource provider supports, Check whether the Update Admin RP is registered on this Azure Stack Hub stamp, Get the canonical operations list for the Update Admin provider on Azure Stack, Build a capability map of Microsoft.Update.Admin for an admin dashboard
Not supported: Does not download, install, or schedule updates on Stack Hub stamps and does not work against public Azure — use the full Stack Hub Update admin RP and the public Update Management API for those; this client only enumerates the provider's operations.
Jentic publishes the only available OpenAPI document for UpdateAdminClient, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for UpdateAdminClient, keeping it validated and agent-ready. The Update Admin Management Client is the Azure Stack Hub admin-plane API for the Microsoft.Update.Admin resource provider. It lets a Stack Hub operator enumerate the operations the Update RP exposes — useful for capability discovery, documentation generation, and scripting tools that build admin dashboards over a privately deployed Azure Stack region. Authentication uses Azure Active Directory OAuth 2.0 against the local admin endpoint adminmanagement.local.azurestack.external.
Feed an Azure Stack Hub operator dashboard with the canonical operation list so admin commands can be wired into UI menus
Patterns agents use UpdateAdminClient API for, with concrete tasks.
★ Stack Hub readiness check after deployment
After standing up a new Azure Stack Hub region, operators need to confirm that admin-plane RPs are registered and responding. Calling GET /providers/Microsoft.Update.Admin/operations returns the operation list if the provider is healthy and a 404 or 503 if it is not. The check is cheap, idempotent, and a useful first step in a post-deploy smoke test that runs against every admin RP.
Call GET /providers/Microsoft.Update.Admin/operations on the admin endpoint adminmanagement.local.azurestack.external and assert that the returned operation list is non-empty.
Capability discovery for admin UIs
An Azure Stack Hub admin dashboard that surfaces Update RP commands needs the canonical operation names so it can render menu items, map them to RBAC roles, and avoid hardcoding strings that drift across stamp versions. This endpoint returns each operation's name, display.provider, display.resource, and display.operation so the UI can group and label them automatically.
Fetch the operations list for Microsoft.Update.Admin and emit a JSON map of operation name → display.operation suitable for populating an admin UI sidebar.
Static documentation generation
Documentation pipelines that produce per-stamp admin reference docs benefit from pulling the operation list at build time rather than maintaining hand-edited tables. Calling this endpoint during the docs build emits a markdown table of every Update Admin operation along with its display metadata, ensuring docs always match the deployed stamp version.
Call the Update Admin operations endpoint, sort the response by display.operation, and write a markdown table with columns name, resource, operation, description.
Agent-driven Stack Hub admin scripting via Jentic
An agent automating Azure Stack Hub admin tasks can use Jentic to discover the Update Admin operations and chain them with other admin RP calls without scraping internal docs. Jentic returns the spec-described operation as a callable tool with the input schema attached, and credential handling for the admin Azure AD token stays inside the vault.
Search Jentic for 'list azure stack update admin operations', execute the operation against the admin endpoint, and return the operation count plus the names list.
1 endpoints — jentic publishes the only available openapi specification for updateadminclient, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/providers/Microsoft.Update.Admin/operations
List all operations exposed by the Microsoft.Update.Admin resource provider
/providers/Microsoft.Update.Admin/operations
List all operations exposed by the Microsoft.Update.Admin resource provider
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Stack Hub admin AAD client secret is stored encrypted in the Jentic vault. Agents never see the secret — only a short-lived OAuth bearer token issued for the admin endpoint at call time.
Intent-based discovery
Agents search Jentic with 'list azure stack update admin operations' and Jentic returns the GET /providers/Microsoft.Update.Admin/operations operation with no parameters required, ready to execute.
Time to first call
Direct integration: half a day to wire MSAL against the Stack Hub admin tenant and resolve the local admin endpoint. Through Jentic: under 15 minutes.
Alternatives and complements available in the Jentic catalogue.
Update Management
Patch orchestration for public Azure and Arc-enabled VMs
Choose Update Management when the target is public Azure or Arc-enabled servers; UpdateAdminClient is for Azure Stack Hub admin only.
InfrastructureInsightsManagementClient
Returns Stack Hub region health and alerts alongside admin RP operations
Use to confirm the Stack Hub region is healthy before scripting admin actions discovered through UpdateAdminClient.
Compute Admin Client
Sibling Stack Hub admin RP for compute resources
Use alongside UpdateAdminClient when an agent is building a full Stack Hub admin tool that spans compute and update planes.
Specific to using UpdateAdminClient API through Jentic.
Why is there no official OpenAPI spec for UpdateAdminClient?
Microsoft Azure does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call UpdateAdminClient 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 UpdateAdminClient use?
It uses Azure Active Directory OAuth 2.0 with the user_impersonation scope. Because the base URL is adminmanagement.local.azurestack.external, the AAD tenant configured on the Azure Stack Hub stamp issues the token. Through Jentic, the admin AAD client secret is held encrypted and a scoped bearer token is issued at execution time.
Can I list all Update Admin operations with the UpdateAdminClient?
Yes. GET /providers/Microsoft.Update.Admin/operations returns the canonical operation list for the Microsoft.Update.Admin resource provider on the Stack Hub admin endpoint. The response includes name, display.provider, display.resource, display.operation, and description for each operation.
What are the rate limits for the UpdateAdminClient?
Azure Stack Hub admin-plane throttling is configured per stamp by the operator and is not declared in the spec. The endpoint is read-only and lightweight, so practical limits are well above normal admin-tooling traffic; respect any Retry-After header on a 429.
How do I call the UpdateAdminClient through Jentic?
Run pip install jentic, then client.search('list azure stack update admin operations'), client.load on the returned operation (GET /providers/Microsoft.Update.Admin/operations), and client.execute against the admin endpoint. Jentic injects the AAD bearer token from the vault.
Does the UpdateAdminClient work against public Azure?
No. The base URL is adminmanagement.local.azurestack.external, which only resolves inside an Azure Stack Hub admin network. For public Azure VM patching use the Update Management API on management.azure.com instead.