Added RestoreSession related constants

This commit is contained in:
jandre 2021-02-17 22:07:23 +01:00
parent 19db817b0c
commit 49a489cd97

View File

@ -7,11 +7,14 @@ import (
type SessionState string
const (
New SessionState = "New"
Running SessionState = "Running"
Success SessionState = "Success"
Failure SessionState = "Failure"
Deleted SessionState = "Deleted"
New SessionState = "New"
Running SessionState = "Running"
Success SessionState = "Success"
Failure SessionState = "Failure"
Deleted SessionState = "Deleted"
TARGET_NAME string = "TARGET_NAME"
RESTORESESSION_NAMESPACE string = "RESTORESESSION_NAMESPACE"
RESTORESESSION_NAME string = "RESTORESESSION_NAME"
)
type TargetStatus struct {