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

# ハイパーバイザー一覧

> VPC 監視用のハイパーバイザー状態情報を取得します

Enterprise 管理者の個人用 API キーが必要です。

Enterprise に属するハイパーバイザーと、その現在のヘルスステータスの一覧を返します。このエンドポイントは VPC 監視向けに設計されており、Enterprise 管理者がハイパーバイザー基盤の健全性を確認できるようにします。

<Note>
  このエンドポイントは、VPC デプロイメントを利用している Enterprise でのみ使用できます。
</Note>


## OpenAPI

````yaml ja/v2-openapi.yaml GET /v2/enterprise/hypervisors/health
openapi: 3.1.0
info:
  description: Enterprise 管理者向け Personal API Keys 対応 Devin v2 API
  title: Devin API v2
  version: 2.0.0
servers: []
security:
  - bearerAuth: []
paths:
  /v2/enterprise/hypervisors/health:
    get:
      tags:
        - hypervisors
      summary: Enterprise ハイパーバイザーの正常性を取得
      description: |-
        Enterprise 内のすべてのハイパーバイザーと、それぞれの現在のヘルスステータスを取得します。

        Returns:
            hypervisor_id と status を含むハイパーバイザーの一覧
      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 キー (apk_user_*)
      scheme: bearer
      type: http

````