github.com/hspak/nomad@v0.7.2-0.20180309000617-bc4ae22a39a5/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 )