mirror of
https://github.com/lxc/incus
synced 2026-08-02 13:35:50 +00:00
13 lines
295 B
Go
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"`
|
|
}
|