github.com/anuvu/nomad@v0.8.7-atom1/api/contexts/contexts.go (about) 1 package contexts 2 3 // Context defines the scope in which a search for Nomad object operates 4 type Context string 5 6 const ( 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 )