Add docs for openapi endpoint (#5766)
This commit is contained in:
parent
54d1d4a49a
commit
a6b6898cca
|
@ -55,6 +55,7 @@
|
|||
- api/system/generate-root.html
|
||||
- api/system/health.html
|
||||
- api/system/init.html
|
||||
- api/system/internal-specs-openapi.html
|
||||
- api/system/internal-ui-mounts.html
|
||||
- api/system/key-status.html
|
||||
- api/system/leader.html
|
||||
|
|
73
website/source/api/system/internal-specs-openapi.html.md
Normal file
73
website/source/api/system/internal-specs-openapi.html.md
Normal file
|
@ -0,0 +1,73 @@
|
|||
---
|
||||
layout: "api"
|
||||
page_title: "/sys/internal/specs/openapi - HTTP API"
|
||||
sidebar_title: "<code>/sys/internal/specs/openapi</code>"
|
||||
sidebar_current: "api-http-system-internal-specs-openapi"
|
||||
description: |-
|
||||
The `/sys/internal/specs/openapi` endpoint is used to generate an OpenAPI document of the mounted backends.
|
||||
---
|
||||
|
||||
# `/sys/internal/specs/openapi`
|
||||
|
||||
The `/sys/internal/specs/openapi` endpoint is used to generate an OpenAPI document of the mounted backends.
|
||||
The response conforms to the [OpenAPI V3 specification](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md),
|
||||
with path names matching the mount names used by the Vault server (i.e. customizations with `-path` will be reflected).
|
||||
The set of included paths is based on the permissions of the request token.
|
||||
|
||||
The response may include Vault-specific [extensions](https://github.com/oai/openapi-specification/blob/master/versions/3.0.2.md#specification-extensions). Three are currently defined:
|
||||
|
||||
- `x-vault-sudo` - Endpoint requires [sudo](https://www.vaultproject.io/docs/concepts/policies.html#sudo) privileges.
|
||||
- `x-vault-unauthenticated` - Endpoint is unauthenticated.
|
||||
- `x-vault-create-supported` - Endpoint allows creation of new items, in addition to updating existing items.
|
||||
|
||||
Basic documentation will be generated for all paths, but a newer path definition structure now allows for
|
||||
more detailed documentation to be added. At this time the `/sys` endpoints have been updated to use the new
|
||||
structure, and other endpoints will be modified incrementally.
|
||||
|
||||
## Get OpenAPI Document
|
||||
|
||||
This endpoint returns a single OpenAPI document describing all paths visible to the requester.
|
||||
|
||||
| Method | Path | Produces |
|
||||
| :----- | :------------------------ | :--------------------- |
|
||||
| `GET` | `/sys/internal/specs/openapi` | `200 application/json` |
|
||||
|
||||
|
||||
### Sample Request
|
||||
|
||||
```
|
||||
$ curl http://127.0.0.1:8200/v1/sys/internal/specs/openapi
|
||||
```
|
||||
|
||||
### Sample Response
|
||||
|
||||
```json
|
||||
{
|
||||
"openapi": "3.0.2",
|
||||
"info": {
|
||||
"title": "HashiCorp Vault API",
|
||||
"description": "HTTP API that gives you full access to Vault. All API routes are prefixed with `/v1/`.",
|
||||
"version": "1.0.0",
|
||||
"license": {
|
||||
"name": "Mozilla Public License 2.0",
|
||||
"url": "https://www.mozilla.org/en-US/MPL/2.0"
|
||||
}
|
||||
},
|
||||
"paths": {
|
||||
"/auth/token/create": {
|
||||
"description": "The token create path is used to create new tokens.",
|
||||
"post": {
|
||||
"summary": "The token create path is used to create new tokens.",
|
||||
"tags": [
|
||||
"auth"
|
||||
],
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
...
|
||||
```
|
||||
|
|
@ -97,6 +97,7 @@
|
|||
'generate-root',
|
||||
'health',
|
||||
'init',
|
||||
'internal-specs-openapi',
|
||||
'internal-ui-mounts',
|
||||
'key-status',
|
||||
'leader',
|
||||
|
|
Loading…
Reference in a new issue