mirror of
https://github.com/lxc/incus
synced 2026-08-02 05:26:46 +00:00
14 lines
325 B
Go
14 lines
325 B
Go
package instance
|
|
|
|
// InstanceAction indicates the type of action being performed.
|
|
type InstanceAction string
|
|
|
|
// InstanceAction types.
|
|
const (
|
|
Stop InstanceAction = "stop"
|
|
Start InstanceAction = "start"
|
|
Restart InstanceAction = "restart"
|
|
Freeze InstanceAction = "freeze"
|
|
Unfreeze InstanceAction = "unfreeze"
|
|
)
|