23 lines
593 B
YAML
23 lines
593 B
YAML
openapi: "3.1.0"
|
|
info:
|
|
title: Proxmox Cluster Status API
|
|
version: "1.0"
|
|
servers:
|
|
- url: https://pve.lawek.com/api2/json
|
|
paths:
|
|
/cluster/status:
|
|
get:
|
|
operationId: getClusterStatus
|
|
summary: Récupère le statut du cluster Proxmox
|
|
responses:
|
|
"200":
|
|
description: Statut du cluster retourné avec succès
|
|
content:
|
|
application/json:
|
|
schema:
|
|
type: object
|
|
properties:
|
|
data:
|
|
type: array
|
|
items:
|
|
type: object |