open-vault/website/source/api/system/plugins-reload-backend.html.md
RJ Spiker fca7cb3794 website: update sidebar_title in front matter to use <code> (#5636)
* website: replace deprecated <tt> with <code> in front matter sidebar_title

* website: wrap front matter sidebar_title in <code> for commands pages
2018-10-29 15:58:37 -04:00

1.3 KiB
Raw Blame History

layout page_title sidebar_title sidebar_current description
api /sys/plugins/reload/backend - HTTP API <code>/sys/plugins/reload/backend</code> api-http-system-plugins-reload-backend The `/sys/plugins/reload/backend` endpoint is used to reload plugin backends.

/sys/plugins/reload/backend

The /sys/plugins/reload/backend endpoint is used to reload mounted plugin backends. Either the plugin name (plugin) or the desired plugin backend mounts (mounts) must be provided, but not both. In the case that the plugin name is provided, all mounted paths that use that plugin backend will be reloaded.

Reload Plugins

This endpoint reloads mounted plugin backends.

Method Path - Produces
PUT /sys/plugins/reload/backend 204 (empty body)

Parameters

  • plugin (string: "")  The name of the plugin to reload, as registered in the plugin catalog.

  • mounts (array: [])  Array or comma-separated string mount paths of the plugin backends to reload.

Sample Payload

{
  "plugin": "mock-plugin"
}

Sample Request

$ curl \
    --header "X-Vault-Token: ..." \
    --request PUT
    http://127.0.0.1:8200/v1/sys/plugins/reload/backend