> ## Documentation Index
> Fetch the complete documentation index at: https://docs.devin.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Hypervisor 列表

> 获取用于 VPC 监控的 Hypervisor 状态信息

需要企业管理员的个人 API key。

返回企业中各个 Hypervisor 及其当前健康状态的列表。此接口专为 VPC 监控设计，使企业管理员可以检查其 Hypervisor 基础设施的健康状况。

<Note>
  此接口仅对具有 VPC 部署的企业可用。
</Note>


## OpenAPI

````yaml zh/v2-openapi.yaml GET /v2/enterprise/hypervisors/health
openapi: 3.1.0
info:
  description: 供企业管理员使用的 Devin v2 API（个人 API key）
  title: Devin API v2
  version: 2.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v2/enterprise/hypervisors/health:
    get:
      tags:
        - hypervisors
      summary: 获取企业级虚拟机管理程序运行状况
      description: |-
        获取某个企业的所有虚拟机管理程序及其当前健康状态。

        返回：
            虚拟机管理程序列表，每项包含其 hypervisor_id 和状态
      operationId: get_enterprise_hypervisors_health_v2_enterprise_hypervisors_health_get
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/HypervisorStatus'
                title: >-
                  Response Get Enterprise Hypervisors Health V2 Enterprise
                  Hypervisors Health Get
                type: array
          description: 成功响应
components:
  schemas:
    HypervisorStatus:
      properties:
        hypervisor_id:
          title: Hypervisor Id
          type: string
        seconds_since_report:
          anyOf:
            - type: integer
            - type: 'null'
          title: Seconds Since Report
        status:
          title: Status
          type: string
      required:
        - hypervisor_id
        - status
      title: HypervisorStatus
      type: object
  securitySchemes:
    bearerAuth:
      description: 仅供 Enterprise 管理员使用的个人 API Key（apk_user_*）
      scheme: bearer
      type: http

````