github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/website/content/docs/commands/recommendation/dismiss.mdx (about)

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