open-nomad/api/contexts/contexts.go
Chelsea Holland Komlo 6243690899 migrate all context
2017-08-28 05:29:38 +00:00

14 lines
311 B
Go

package contexts
// Context defines the scope in which a search for Nomad object operates
type Context string
const (
Allocs Context = "allocs"
Deployments Context = "deployment"
Evals Context = "evals"
Jobs Context = "jobs"
Nodes Context = "nodes"
All Context = "all"
)