github.com/Ilhicas/nomad@v1.0.4-0.20210304152020-e86851182bc3/website/content/docs/commands/recommendation/dismiss.mdx (about) 1 --- 2 layout: docs 3 page_title: 'Commands: recommendation dismiss' 4 sidebar_title: dismiss 5 description: | 6 The recommendation dismiss command is used to dismiss recommendations. 7 --- 8 9 # Command: recommendation dismiss 10 11 The `recommendation dismiss` command is used to dismiss recommendations. 12 13 ~> Recommendation commands are new in Nomad 1.0 and are only available with 14 Nomad Enterprise. 15 16 ## Usage 17 18 ```plaintext 19 nomad recommendation dismiss [options] <recommendation_ids> 20 ``` 21 22 The `recommendation dismiss` command requires at least one recommendation ID 23 to be passed to it. Multiple IDs can be passed, with each recommendation ID 24 separated from the next by a space. 25 26 When ACLs are enabled, this command requires a token with the `submit-job`, 27 `read-job`, and `submit-recommendation` capabilities for the recommendation's 28 namespace. 29 30 ## General Options 31 32 @include 'general_options.mdx' 33 34 ## Examples 35 36 Dismiss a single recommendation: 37 38 ```shell-session 39 $ nomad recommendation dismiss a9c041c5-3c04-aa24-bd55-0a80cded4f10 40 Successfully dismissed recommendation 41 ```