Documentation
¶
Overview ¶
Package contexts provides constants used with the Nomad Search API.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Context ¶
type Context string
Context defines the scope in which a search for Nomad object operates.
const ( // These Context types are used to reference the high level Nomad object // types than can be searched. Allocs Context = "allocs" Deployments Context = "deployment" Evals Context = "evals" Jobs Context = "jobs" Nodes Context = "nodes" NodePools Context = "node_pools" Namespaces Context = "namespaces" Quotas Context = "quotas" Recommendations Context = "recommendations" ScalingPolicies Context = "scaling_policy" Plugins Context = "plugins" Variables Context = "vars" Volumes Context = "volumes" HostVolumes Context = "host_volumes" // These Context types are used to associate a search result from a lower // level Nomad object with one of the higher level Context types above. Groups Context = "groups" Services Context = "services" Tasks Context = "tasks" Images Context = "images" Commands Context = "commands" Classes Context = "classes" // Context used to represent the set of all the higher level Context types. All Context = "all" )
Click to show internal directories.
Click to hide internal directories.