- help="node described in the configuration file [default: 'default'" + \
- " only if configuration file is specified]",
+ help="node described in the configuration file [default: 'default' only if configuration file is specified]",
metavar="NODE")
add("-H", "--host", dest="hostname",
- help="connect to host HOST" ,
+ help="connect to host HOST",
metavar="HOST")
add("-P", "--port", dest="port",
help="connect to port PORT",
metavar="PORT")
+ add("--path-prefix", dest="path_prefix",
+ help="use specific URI path prefix for the RabbitMQ HTTP API. /api and operation path will be appended to it. (default: blank string)")
add("-V", "--vhost", dest="vhost",
help="connect to vhost VHOST [default: all vhosts for list, '/' for declare]",
metavar="VHOST")
add("-u", "--username", dest="username",
help="connect using username USERNAME",
metavar="USERNAME")
add("-p", "--password", dest="password",
help="connect using password PASSWORD",
metavar="PASSWORD")
+ add("-U", "--base-uri", dest="base_uri",
+ help="connect using a base HTTP API URI. /api and operation path will be appended to it. Path will be ignored. --vhost has to be provided separately.",