incus-mirror/shared/api/instance_debug.go
Stéphane Graber c1caca2a0f
shared/api: Add InstanceDebugRepairPost
Signed-off-by: Stéphane Graber <stgraber@stgraber.org>
2026-03-04 22:16:27 -05:00

13 lines
295 B
Go

package api
// InstanceDebugRepairPost represents an instance repair request.
//
// swagger:model
//
// API extension: instances_debug_repair.
type InstanceDebugRepairPost struct {
// The desired repair action.
// Example: rebuild-config-volume
Action string `json:"action" yaml:"action"`
}