OpenAPI Specification
openapi: 3.1.0
info:
title: Azure Arc Hybrid Compute REST Machines Operations API
description: Azure Arc extends Azure management to servers, Kubernetes clusters, and data services running anywhere. The Hybrid Compute REST API manages Arc-enabled servers (machines), extensions, and private link scopes.
version: '2024-01-01'
servers:
- url: https://management.azure.com
description: Azure Resource Manager
security:
- azure_auth:
- user_impersonation
tags:
- name: Operations
description: Operations operations
paths:
/providers/Microsoft.HybridCompute/operations:
get:
operationId: listOperations
summary: Azure Arc Hybrid Compute REST API List operations
description: Lists all available REST API operations for Microsoft.HybridCompute.
tags:
- Operations
parameters:
- $ref: '#/components/parameters/apiVersion'
responses:
'200':
description: Operations list
content:
application/json:
schema:
$ref: '#/components/schemas/OperationList'
default:
description: Error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
components:
schemas:
Operation:
type: object
properties:
name:
type: string
display:
type: object
properties:
provider:
type: string
resource:
type: string
operation:
type: string
description:
type: string
isDataAction:
type: boolean
OperationList:
type: object
properties:
value:
type: array
items:
$ref: '#/components/schemas/Operation'
nextLink:
type: string
ErrorResponse:
type: object
properties:
error:
type: object
properties:
code:
type: string
message:
type: string
target:
type: string
parameters:
apiVersion:
name: api-version
in: query
required: true
description: The API version to use for this operation.
schema:
type: string
securitySchemes:
azure_auth:
type: oauth2
description: Azure Active Directory OAuth2 Flow.
flows:
implicit:
authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
scopes:
user_impersonation: Impersonate your user account
externalDocs:
description: Azure Arc Hybrid Compute REST API Documentation
url: https://learn.microsoft.com/en-us/rest/api/hybridcompute/
x-generated-from: https://learn.microsoft.com/en-us/rest/api/hybridcompute/
x-generated-by: claude-crawl-2026-05-08