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

AICPA SOC for Service Organizations logoAICPA SOC for Service Organizations logo

SOC 2® Type 1 report

Audited by Prescient Assurance

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
2 Grattan Court East, Dublin, D02 VX86, Ireland
Switch to light modeSwitch to dark mode
APIs / Security / Azure / GuestConfiguration
GuestConfiguration logo

Microsoft Azure GuestConfiguration

Browse all Azure APIs
43
AI ReadinessFoundational (D)43/100
See full scorecard
Agent-ready OpenAPI document · curated by JenticSecurityComplianceoauth27 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Assign in-guest configuration policies to Azure VMs and read compliance reports that show whether each VM matches its assigned baseline.

Use for: I need to assign a security baseline to VM 'web01', List all guest configuration assignments on VM 'db-prod', Retrieve the latest compliance report for the 'baseline' assignment, Check whether VM 'app-server' is compliant with its assigned configuration

Not supported: Does not author configuration packages, manage Azure Policy assignments, or run runbooks - use for assigning guest configuration baselines to VMs and reading their compliance reports only.

Jentic publishes the only available OpenAPI specification for GuestConfiguration, keeping it validated and agent-ready. The Azure Guest Configuration API assigns and audits in-guest configuration policies on Azure VMs through the Microsoft.GuestConfiguration resource provider. It lets operators apply DSC-based configuration packages, read compliance reports per VM, and enumerate the operations the resource provider supports. The API is delivered as part of Azure Resource Manager and authenticated via Azure AD OAuth2 against management.azure.com.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the GuestConfiguration to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the GuestConfiguration, 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%2Fguestconfiguration" | 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%2Fguestconfiguration" | 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 GuestConfiguration API.

Assign a guest configuration package to a specific Azure VM

List all guest configuration assignments on a given VM

Retrieve the current state of a single configuration assignment

Delete a guest configuration assignment to remove the baseline from a VM

List compliance reports generated by a configuration assignment over time

Retrieve a specific compliance report by ID for audit and forensics

Enumerate the operations the Microsoft.GuestConfiguration provider supports

Use Cases

Patterns agents use GuestConfiguration API for, with concrete tasks.

★ Apply a security baseline to a VM fleet

Assign a guest configuration package such as a CIS Windows baseline to each VM via PUT on guestConfigurationAssignments. The Microsoft.GuestConfiguration extension on the VM downloads the package, applies it, and reports compliance back to Azure. Suitable for organisations with regulatory baseline requirements.

Create a guestConfigurationAssignment named 'CIS-Windows' on VM 'web01' that references the CIS Windows configuration package.

Continuous compliance reporting

Read the latest compliance report from each assignment to confirm whether VMs match their assigned baselines. The reports list endpoint returns historical reports; the get-by-ID endpoint pulls a specific report for forensic analysis. Useful for daily automated compliance dashboards.

List GuestConfigurationAssignmentReports for 'CIS-Windows' on VM 'web01' and return any report whose complianceStatus is 'NonCompliant'.

Decommission a baseline on retired hosts

Delete the guest configuration assignment when a VM is retired or moves out of scope. The DELETE endpoint removes the ARM assignment record so Azure stops requesting compliance reports from that VM. Useful at the end of a workload migration.

Delete the 'CIS-Windows' guestConfigurationAssignment from VM 'web01' as part of decommissioning the host.

AI agent-driven compliance remediation

A compliance agent uses Jentic to fetch reports for every assignment, identify NonCompliant VMs, and either re-assign the package or escalate to a human. Jentic resolves natural-language intents to the right ARM operation and injects the bearer token at execution, so the agent never holds raw Azure credentials.

Use Jentic to search for 'list azure guest configuration compliance reports', load GuestConfigurationAssignmentReports_List, and flag every VM in resource group 'web-rg' with a NonCompliant report in the last 24 hours.

Key Endpoints

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

METHOD

PATH

DESCRIPTION

PUT

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}

Create or update a guest configuration assignment on a VM

GET

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments

List assignments on a VM

DELETE

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}

Delete an assignment

GET

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}/reports

List compliance reports for an assignment

GET

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}/reports/{reportId}

Get a specific compliance report

GET

/providers/Microsoft.GuestConfiguration/operations

List supported provider operations

PUT

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}

Create or update a guest configuration assignment on a VM

GET

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments

List assignments on a VM

DELETE

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}

Delete an assignment

GET

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}/reports

List compliance reports for an assignment

GET

/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/{guestConfigurationAssignmentName}/reports/{reportId}

Get a specific compliance report

GET

/providers/Microsoft.GuestConfiguration/operations

List supported provider operations

Jentic AI Readiness Score

This API is usable in Jentic One now. Its AI-readiness score against Jentic's framework shows where it stands today and where improvements would make it even easier for agents to use.

G

GuestConfiguration

- Foundational (D)
43/100
93
Foundational Compliance
63
Developer Experience & Jentic Compatibility
20
AI-Readiness & Agent Experience
94
Agent Usability
35
Security
100
AI Discoverability
Powered by JenticScoring Framework 1.0.0 | Scoring Engine 0.4.0
Show dimension breakdown
93

Foundational Compliance

Base layer of spec validity and structural soundness.

Grade: A+Signals: 4
98%

Lint Results

Aggregated quality score from linter diagnostics, weighted by severity.

100%

Resolution Completeness

Percentage of `$ref` references that resolve successfully.

100%

Specification Validity

Checks whether the API description parses successfully and conforms to its declared specification (e.g., OpenAPI).

75%

Structural Integrity

Structural correctness score based on schema issues using logarithmic dampening.

63

Developer Experience & Jentic Compatibility

Clarity, completeness, and ingestion readiness for developers and tooling.

Grade: B-Signals: 4
0%

Example Density

How richly the API is illustrated with examples.

100%

Example Validity

Percentage of examples that conform to their schemas.

50%

Response Coverage

Percentage of operations with complete response definitions (success, client error, server error).

100%

Tooling Readiness

Health of API ingestion, bundling, and resolution within Jentic pipelines.

20

AI-Readiness & Agent Experience

Semantic breadth, depth, and agent comprehension for AI systems.

Grade: FSignals: 4
79%

Description Coverage

Coverage of descriptions across API elements.

0%

Error Standardization

Coverage of RFC 9457 Problem Details for error responses.

0%

OperationId Quality

Coverage, uniqueness, and casing consistency of operationIds for AI inference.

0%

Summary Coverage

Coverage of summaries across operations/tags/info.

94

Agent Usability

Functional utility, complexity comfort, and AI orchestration readiness.

Grade: A+Signals: 1
94%

Complexity Comfort

Agent comfort level based on API operational and structural complexity.

35

Security

Trust, risk posture, and security compliance.

Grade: FSignals: 1
35%

Authentication Strength

Average quality of security schemes based on authentication method strength (weakest link for OAuth2).

100

AI Discoverability

Findability, semantic richness, and reasoning readiness.

Grade: A+Signals: 1
100%

Descriptive Richness

Clarity and depth of descriptions across API elements.

View full reportHow the score is calculatedMore about the dimensions

Score it yourself

Every API in the directory is allowlisted, so you can re-score it with no key required.

Score your own APIScoring CLI agent skill
npx @jentic/api-scorecard-cli score <openapi-url>

Why Jentic?

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

Setup

Wiring Guest Configuration by hand means standing up an Azure AD service principal, exchanging its client secret for a bearer token against management.azure.com, and polling long-running assignment operations yourself. Through Jentic you install once, import Guest Configuration from the API Directory, store the service principal credentials once, and your agent calls it.

Permission scoping

The VM and assignment names travel in the URL path (/virtualMachines/{vmName}/.../guestConfigurationAssignments/{guestConfigurationAssignmentName}), so a rule can pin your agent to reading compliance reports on named assignments. You choose the operations it may call, so a destructive one like deleting a guest configuration assignment is not included unless you add it.

Credential isolation

Your Azure service principal credentials are stored once, encrypted, by your own Jentic One instance and exchanged for a scoped Azure AD bearer token at execution time. The client secret never enters the agent's prompt, logs, or context.

Intent-based discovery

Agents search Jentic by intent such as 'assign a guest configuration baseline to an azure vm' or 'read vm compliance reports', and Jentic returns the matching guestConfigurationAssignments operation with its input schema so the agent calls the right ARM endpoint without reading Microsoft Learn.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Azure Policy

→

Defines policies that can include guest configuration baselines as compliance rules.

Use Azure Policy when the agent needs to declare a guest configuration baseline as part of a broader policy assignment across many subscriptions.

Complementary

Azure Compute Management

→

Manage the underlying Azure VMs that guest configuration assignments target.

Pair with Compute when the agent needs to provision VMs before assigning them a guest configuration baseline.

Alternative

Azure Automation

→

DSC and runbook-based configuration management as an alternative path to in-guest config.

Use Azure Automation DSC when the agent needs broader runbook orchestration rather than ARM-tracked assignment objects.

FAQs

Specific to using GuestConfiguration API through Jentic.

Why is there no official OpenAPI spec for GuestConfiguration?

Microsoft Azure does not publish a stand-alone OpenAPI specification for the Guest Configuration API. Jentic generates and maintains this spec from the Microsoft.GuestConfiguration ARM surface so that AI agents and developers can call GuestConfiguration 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 Guest Configuration API use?

It uses Azure AD OAuth2 against management.azure.com, declared as the azure_auth security scheme. Through Jentic, your Azure service principal credentials are stored encrypted and exchanged for a scoped bearer token at execution time.

Can I read compliance reports for a VM through this API?

Yes. Use GET on /subscriptions/.../guestConfigurationAssignments/{name}/reports to list reports, or .../reports/{reportId} to fetch a specific one. Each report includes the assignment's complianceStatus and the resources it inspected.

What are the rate limits?

Azure Resource Manager applies subscription-level throttles - roughly 12,000 reads and 1,200 writes per hour per subscription. Compliance report polling should be batched per VM rather than per resource.

How do I assign a baseline to a VM through Jentic?

Run jentic.search('assign azure guest configuration to a vm'), load the GuestConfigurationAssignments_CreateOrUpdate schema, and execute it with the subscription, resource group, VM name, assignment name, and a body referencing the configuration package. Compliance status appears under the matching reports endpoint within minutes.

Can I limit what my agent is allowed to do with the Azure Guest Configuration API?

Yes. Because you run Jentic One yourself, your own rules decide which of the seven Guest Configuration operations the agent may call and which stored Azure service principal credentials it may use. Since the VM name and assignment name travel in the URL path, you can pin the agent to read-only work such as listing and retrieving compliance reports on named assignments, while destructive operations like deleting a guest configuration assignment stay out of scope unless you explicitly add them.

GET STARTED

Start building with GuestConfiguration API

Explore with Jentic One
View OpenAPI Document