NVIDIA UFM Enterprise REST API Guide

Non-Optimal Links REST API

Get Non-Optimal Links Action

  • Description – get the default action of non-optimal links between the ports

  • Request URL – GET /ufmRest/app/non_optimal_ports

  • Request Content Type – application/json

  • Response 

    {
        "bad_port_action": "ignore"
    }
    
  • Status Codes200 – OK400 – bad request

Update Non-Optimal Links Action

  • Description – updates the action on the non-optimal links between the ports. Possible actions: "ignore", "reset", and "disable".

  • Request URL – PUT /ufmRest/app/non_optimal_ports

  • Request Content Type – application/json

  • Request Data 

    {
        "bad_port_action": "ignore"
    }
    
  • Status Codes200 – OK400 – bad request

  • Description – run an immediate action on all the non-optimal links between the ports. Possible actions: "ignore", "reset", and "disable".

  • Request URL – POST /ufmRest/app/non_optimal_ports/action_on_port

  • Request Content Type – application/json

  • Request Data 

    {
        "bad_port_action": "ignore"
    }
    
  • Status Codes201 – created400 – bad request

Last updated: