1package contexts
2
3// Context defines the scope in which a search for Nomad object operates
4type Context string
5
6const (
7	Allocs      Context = "allocs"
8	Deployments Context = "deployment"
9	Evals       Context = "evals"
10	Jobs        Context = "jobs"
11	Nodes       Context = "nodes"
12	Namespaces  Context = "namespaces"
13	Quotas      Context = "quotas"
14	All         Context = "all"
15)
16