HashiCorp vendor logo

Vendor

HashiCorp

Product

Vault

Method

REST

Category

ITSM (Service Management)

Project Type

Adapter


View Repository
Adapter

Adapter for Integration to HashiCorp Vault

Overview

This adapter is used to integrate the Itential Automation Platform (IAP) with the HashiCorpVault System. The API that was used to build the adapter for HashiCorpVault is usually available in the report directory of this adapter. The adapter utilizes the HashiCorpVault API to provide the integrations that are deemed pertinent to IAP. The ReadMe file is intended to provide information on this adapter it is generated from various other Markdown files.

For further technical details on how to install and use this adapter, please click the Technical Documentation tab.

HashiCorpVault

Table of Contents

Getting Started

These instructions will help you get a copy of the project on your local machine for development and testing. Reading this section is also helpful for deployments as it provides you with pertinent information on prerequisites and properties.

Helpful Background Information

There is Adapter documentation available on the Itential Documentation Site. This documentation includes information and examples that are helpful for:

Authentication
IAP Service Instance Configuration
Code Files
Endpoint Configuration (Action & Schema)
Mock Data
Adapter Generic Methods
Headers
Security
Linting and Testing
Build an Adapter
Troubleshooting an Adapter

Others will be added over time. Want to build a new adapter? Use the Itential Adapter Builder

Prerequisites

The following is a list of required packages for installation on the system the adapter will run on:

Node.js
npm
Git

The following list of packages are required for Itential opensource adapters or custom adapters that have been built utilizing the Itential Adapter Builder. You can install these packages by running npm install inside the adapter directory.

PackageDescription
@itentialopensource/adapter-utilsRuntime library classes for all adapters; includes request handling, connection, authentication throttling, and translation.
ajvRequired for validation of adapter properties to integrate with HashiCorpVault.
axiosUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
commanderUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
dns-lookup-promiseUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
fs-extraUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
mochaTesting library that is utilized by some of the node scripts that are included with the adapter.
mocha-paramTesting library that is utilized by some of the node scripts that are included with the adapter.
mongodbUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
nycTesting coverage library that is utilized by some of the node scripts that are included with the adapter.
pingUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
readline-syncUtilized by the node script that comes with the adapter; helps to test unit and integration functionality.
semverUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.
winstonUtilized by the node scripts that are included with the adapter; helps to build and extend the functionality.

If you are developing and testing a custom adapter, or have testing capabilities on an Itential opensource adapter, you will need to install these packages as well.

chai
eslint
eslint-config-airbnb-base
eslint-plugin-import
eslint-plugin-json
testdouble

How to Install

  1. Set up the name space location in your IAP node_modules.
cd /opt/pronghorn/current/node_modules (* could be in a different place)
if the @itentialopensource directory does not exist, create it:
    mkdir @itentialopensource
  1. Clone/unzip/tar the adapter into your IAP environment.
cd \@itentialopensource
git clone git@gitlab.com:\@itentialopensource/adapters/adapter-hashicorp_vault
or
unzip adapter-hashicorp_vault.zip
or
tar -xvf adapter-hashicorp_vault.tar
  1. Run the adapter install script.
cd adapter-hashicorp_vault
npm install
npm run lint:errors
npm run test
  1. Restart IAP
systemctl restart pronghorn
  1. Create an adapter service instance configuration in IAP Admin Essentials GUI

  2. Copy the properties from the sampleProperties.json and paste them into the service instance configuration in the inner/second properties field.

  3. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI

For an easier install of the adapter use npm run adapter:install, it will install the adapter in IAP. Please note that it can be dependent on where the adapter is installed and on the version of IAP so it is subject to fail. If using this, you can replace step 3-5 above with these:

  1. Install adapter dependencies and check the adapter.
cd adapter-hashicorp_vault
npm run adapter:install
  1. Restart IAP
systemctl restart pronghorn
  1. Change the adapter service instance configuration (host, port, credentials, etc) in IAP Admin Essentials GUI

Testing

Mocha is generally used to test all Itential Opensource Adapters. There are unit tests as well as integration tests performed. Integration tests can generally be run as standalone using mock data and running the adapter in stub mode, or as integrated. When running integrated, every effort is made to prevent environmental failures, however there is still a possibility.

Unit Testing

Unit Testing includes testing basic adapter functionality as well as error conditions that are triggered in the adapter prior to any integration. There are two ways to run unit tests. The prefered method is to use the testRunner script; however, both methods are provided here.

node utils/testRunner --unit

npm run test:unit
npm run test:baseunit

To add new unit tests, edit the test/unit/adapterTestUnit.js file. The tests that are already in this file should provide guidance for adding additional tests.

Integration Testing - Standalone

Standalone Integration Testing requires mock data to be provided with the entities. If this data is not provided, standalone integration testing will fail. When the adapter is set to run in stub mode (setting the stub property to true), the adapter will run through its code up to the point of making the request. It will then retrieve the mock data and return that as if it had received that data as the response from HashiCorpVault. It will then translate the data so that the adapter can return the expected response to the rest of the Itential software. Standalone is the default integration test.

Similar to unit testing, there are two ways to run integration tests. Using the testRunner script is better because it prevents you from having to edit the test script; it will also resets information after testing is complete so that credentials are not saved in the file.

node utils/testRunner
  answer no at the first prompt

npm run test:integration

To add new integration tests, edit the test/integration/adapterTestIntegration.js file. The tests that are already in this file should provide guidance for adding additional tests.

Integration Testing

Integration Testing requires connectivity to HashiCorpVault. By using the testRunner script it prevents you from having to edit the integration test. It also resets the integration test after the test is complete so that credentials are not saved in the file.

Note: These tests have been written as a best effort to make them work in most environments. However, the Adapter Builder often does not have the necessary information that is required to set up valid integration tests. For example, the order of the requests can be very important and data is often required for creates and updates. Hence, integration tests may have to be enhanced before they will work (integrate) with HashiCorpVault. Even after tests have been set up properly, it is possible there are environmental constraints that could result in test failures. Some examples of possible environmental issues are customizations that have been made within HashiCorpVault which change order dependencies or required data.

node utils/testRunner
answer yes at the first prompt
answer all other questions on connectivity and credentials

Test should also be written to clean up after themselves. However, it is important to understand that in some cases this may not be possible. In addition, whenever exceptions occur, test execution may be stopped, which will prevent cleanup actions from running. It is recommended that tests be utilized in dev and test labs only.

Reminder: Do not check in code with actual credentials to systems.

Configuration

This section defines all the properties that are available for the adapter, including detailed information on what each property is for. If you are not using certain capabilities with this adapter, you do not need to define all of the properties. An example of how the properties for this adapter can be used with tests or IAP are provided in the sampleProperties.

Example Properties

  "properties": {
    "host": "localhost",
    "port": 8200,
    "choosepath": "",
    "base_path": "/",
    "version": "v1",
    "cache_location": "none",
    "encode_pathvars": true,
    "encode_queryvars": true,
    "save_metric": false,
    "stub": true,
    "protocol": "http",
    "authentication": {
      "auth_method": "static_token",
      "username": "username",
      "password": "password",
      "token": "token",
      "token_timeout": 600000,
      "token_cache": "local",
      "invalid_token_error": 401,
      "auth_field": "header.headers.X-Vault-Token",
      "auth_field_format": "{token}",
      "auth_logging": false,
      "client_id": "",
      "client_secret": "",
      "grant_type": "",
      "sensitive": [],
      "sso": {
        "protocol": "",
        "host": "",
        "port": 0
      },
      "multiStepAuthCalls": [
        {
          "name": "",
          "requestFields": {},
          "responseFields": {},
          "successfullResponseCode": 200
        }
      ]
    },
    "healthcheck": {
      "type": "none",
      "frequency": 60000,
      "query_object": {},
      "addlHeaders": {}
    },
    "throttle": {
      "throttle_enabled": false,
      "number_pronghorns": 1,
      "sync_async": "sync",
      "max_in_queue": 1000,
      "concurrent_max": 1,
      "expire_timeout": 0,
      "avg_runtime": 200,
      "priorities": [
        {
          "value": 0,
          "percent": 100
        }
      ]
    },
    "request": {
      "number_redirects": 0,
      "number_retries": 3,
      "limit_retry_error": [
        0
      ],
      "failover_codes": [],
      "attempt_timeout": 5000,
      "global_request": {
        "payload": {},
        "uriOptions": {},
        "addlHeaders": {},
        "authData": {}
      },
      "healthcheck_on_timeout": true,
      "return_raw": false,
      "archiving": false,
      "return_request": false
    },
    "proxy": {
      "enabled": false,
      "host": "",
      "port": 1,
      "protocol": "http",
      "username": "",
      "password": ""
    },
    "ssl": {
      "ecdhCurve": "",
      "enabled": false,
      "accept_invalid_cert": false,
      "ca_file": "",
      "key_file": "",
      "cert_file": "",
      "secure_protocol": "",
      "ciphers": ""
    },
    "mongo": {
      "host": "",
      "port": 0,
      "database": "",
      "username": "",
      "password": "",
      "replSet": "",
      "db_ssl": {
        "enabled": false,
        "accept_invalid_cert": false,
        "ca_file": "",
        "key_file": "",
        "cert_file": ""
      }
    },
    "devicebroker": {
      "getDevice": [
        {
          "path": "/get/devices/{id}",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {
            "name": "host",
            "ostype": "os",
            "ostypePrefix": "system-",
            "ipaddress": "attributes.ipaddr",
            "port": "443"
          }
        }
      ],
      "getDevicesFiltered": [
        {
          "path": "/get/devices",
          "method": "GET",
          "pagination": {
            "offsetVar": "",
            "limitVar": "",
            "incrementBy": "limit",
            "requestLocation": "query"
          },
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {},
          "responseDatakey": "",
          "responseFields": {
            "name": "host",
            "ostype": "os",
            "ostypePrefix": "system-",
            "ipaddress": "attributes.ipaddr",
            "port": "443"
          }
        }
      ],
      "isAlive": [
        {
          "path": "/get/devices/{id}/status",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {
            "status": "status",
            "statusValue": "online"
          }
        }
      ],
      "getConfig": [
        {
          "path": "/get/devices/{id}/configPart1",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {
            "id": "name"
          },
          "responseDatakey": "",
          "responseFields": {}
        }
      ],
      "getCount": [
        {
          "path": "/get/devices",
          "method": "GET",
          "query": {},
          "body": {},
          "headers": {},
          "handleFailure": "ignore",
          "requestFields": {},
          "responseDatakey": "",
          "responseFields": {}
        }
      ]
    },
    "cache": {
      "enabled": false,
      "entities": [
        {
          "entityType": "",
          "frequency": 1440,
          "flushOnFail": false,
          "limit": 1000,
          "retryAttempts": 5,
          "sort": true,
          "populate": [
            {
              "path": "",
              "method": "GET",
              "pagination": {
                "offsetVar": "",
                "limitVar": "",
                "incrementBy": "limit",
                "requestLocation": "query"
              },
              "query": {},
              "body": {},
              "headers": {},
              "handleFailure": "ignore",
              "requestFields": {},
              "responseDatakey": "",
              "responseFields": {}
            }
          ],
          "cachedTasks": [
            {
              "name": "",
              "filterField": "",
              "filterLoc": ""
            }
          ]
        }
      ]
    }
  }

Connection Properties

These base properties are used to connect to HashiCorpVault upon the adapter initially coming up. It is important to set these properties appropriately.

PropertyDescription
hostRequired. A fully qualified domain name or IP address.
portRequired. Used to connect to the server.
base_pathOptional. Used to define part of a path that is consistent for all or most endpoints. It makes the URIs easier to use and maintain but can be overridden on individual calls. An example **base_path** might be `/rest/api`. Default is ``.
versionOptional. Used to set a global version for action endpoints. This makes it faster to update the adapter when endpoints change. As with the base-path, version can be overridden on individual endpoints. Default is ``.
cache_locationOptional. Used to define where the adapter cache is located. The cache is used to maintain an entity list to improve performance. Storage locally is lost when the adapter is restarted. Storage in Redis is preserved upon adapter restart. Default is none which means no caching of the entity list.
encode_pathvarsOptional. Used to tell the adapter to encode path variables or not. The default behavior is to encode them so this property can be used to stop that behavior.
encode_queryvarsOptional. Used to tell the adapter to encode query parameters or not. The default behavior is to encode them so this property can be used to stop that behavior.
save_metricOptional. Used to tell the adapter to save metric information (this does not impact metrics returned on calls). This allows the adapter to gather metrics over time. Metric data can be stored in a database or on the file system.
stubOptional. Indicates whether the stub should run instead of making calls to HashiCorpVault (very useful during basic testing). Default is false (which means connect to HashiCorpVault).
protocolOptional. Notifies the adapter whether to use HTTP or HTTPS. Default is HTTP.

A connectivity check tells IAP the adapter has loaded successfully.

Authentication Properties

The following properties are used to define the authentication process to HashiCorpVault.

Note: Depending on the method that is used to authenticate with HashiCorpVault, you may not need to set all of the authentication properties.

PropertyDescription
auth_methodRequired. Used to define the type of authentication currently supported. Authentication methods currently supported are: `basic user_password`, `static_token`, `request_token`, and `no_authentication`.
usernameUsed to authenticate with HashiCorpVault on every request or when pulling a token that will be used in subsequent requests.
passwordUsed to authenticate with HashiCorpVault on every request or when pulling a token that will be used in subsequent requests.
tokenDefines a static token that can be used on all requests. Only used with `static_token` as an authentication method (auth\_method).
invalid_token_errorDefines the HTTP error that is received when the token is invalid. Notifies the adapter to pull a new token and retry the request. Default is 401.
token_timeoutDefines how long a token is valid. Measured in milliseconds. Once a dynamic token is no longer valid, the adapter has to pull a new token. If the token_timeout is set to -1, the adapter will pull a token on every request to HashiCorpVault. If the timeout_token is 0, the adapter will use the expiration from the token response to determine when the token is no longer valid.
token_cacheUsed to determine where the token should be stored (local memory or in Redis).
auth_fieldDefines the request field the authentication (e.g., token are basic auth credentials) needs to be placed in order for the calls to work.
auth_field_formatDefines the format of the auth\_field. See examples below. Items enclosed in {} inform the adapter to perofrm an action prior to sending the data. It may be to replace the item with a value or it may be to encode the item.
auth_loggingSetting this true will add some additional logs but this should only be done when trying to debug an issue as certain credential information may be logged out when this is true.
client_idProvide a client id when needed, this is common on some types of OAuth.
client_secretProvide a client secret when needed, this is common on some types of OAuth.
grant_typeProvide a grant type when needed, this is common on some types of OAuth.

Examples of authentication field format

"{token}"
"Token {token}"
"{username}:{password}"
"Basic {b64}{username}:{password}{/b64}"

Healthcheck Properties

The healthcheck properties defines the API that runs the healthcheck to tell the adapter that it can reach HashiCorpVault. There are currently three types of healthchecks.

  • None - Not recommended. Adapter will not run a healthcheck. Consequently, unable to determine before making a request if the adapter can reach HashiCorpVault.
  • Startup - Adapter will check for connectivity when the adapter initially comes up, but it will not check afterwards.
  • Intermittent - Adapter will check connectivity to HashiCorpVault at a frequency defined in the frequency property.
PropertyDescription
typeRequired. The type of health check to run.
frequencyRequired if intermittent. Defines how often the health check should run. Measured in milliseconds. Default is 300000.
query_objectQuery parameters to be added to the adapter healthcheck call.

Request Properties

The request section defines properties to help handle requests.

PropertyDescription
number_redirectsOptional. Tells the adapter that the request may be redirected and gives it a maximum number of redirects to allow before returning an error. Default is 0 - no redirects.
number_retriesTells the adapter how many times to retry a request that has either aborted or reached a limit error before giving up and returning an error.
limit_retry_errorOptional. Can be either an integer or an array. Indicates the http error status number to define that no capacity was available and, after waiting a short interval, the adapter can retry the request. If an array is provvided, the array can contain integers or strings. Strings in the array are used to define ranges (e.g. "502-506"). Default is [0].
failover_codesAn array of error codes for which the adapter will send back a failover flag to IAP so that the Platform can attempt the action in another adapter.
attempt_timeoutOptional. Tells how long the adapter should wait before aborting the attempt. On abort, the adapter will do one of two things: 1) return the error; or 2) if **healthcheck\_on\_timeout** is set to true, it will abort the request and run a Healthcheck until it re-establishes connectivity to HashiCorpVault, and then will re-attempt the request that aborted. Default is 5000 milliseconds.
global_requestOptional. This is information that the adapter can include in all requests to the other system. This is easier to define and maintain than adding this information in either the code (adapter.js) or the action files.
global_request -> payloadOptional. Defines any information that should be included on all requests sent to the other system that have a payload/body.
global_request -> uriOptionsOptional. Defines any information that should be sent as untranslated query options (e.g. page, size) on all requests to the other system.
global_request -> addlHeadersOptioonal. Defines any headers that should be sent on all requests to the other system.
global_request -> authDataOptional. Defines any additional authentication data used to authentice with the other system. This authData needs to be consistent on every request.
healthcheck_on_timeoutRequired. Defines if the adapter should run a health check on timeout. If set to true, the adapter will abort the request and run a health check until it re-establishes connectivity and then it will re-attempt the request.
return_rawOptional. Tells the adapter whether the raw response should be returned as well as the IAP response. This is helpful when running integration tests to save mock data. It does add overhead to the response object so it is not ideal from production.
archivingOptional flag. Default is false. It archives the request, the results and the various times (wait time, HashiCorpVault time and overall time) in the `adapterid_results` collection in MongoDB. Although archiving might be desirable, be sure to develop a strategy before enabling this capability. Consider how much to archive and what strategy to use for cleaning up the collection in the database so that it does not become too large, especially if the responses are large.
return_requestOptional flag. Default is false. Will return the actual request that is made including headers. This should only be used during debugging issues as there could be credentials in the actual request.

SSL Properties

The SSL section defines the properties utilized for ssl authentication with HashiCorpVault. SSL can work two different ways: set the accept\_invalid\_certs flag to true (only recommended for lab environments), or provide a ca\_file.

PropertyDescription
enabledIf SSL is required, set to true.
accept_invalid_certsDefines if the adapter should accept invalid certificates (only recommended for lab environments). Required if SSL is enabled. Default is false.
ca_fileDefines the path name to the CA file used for SSL. If SSL is enabled and the accept invalid certifications is false, then ca_file is required.
key_fileDefines the path name to the Key file used for SSL. The key_file may be needed for some systems but it is not required for SSL.
cert_fileDefines the path name to the Certificate file used for SSL. The cert_file may be needed for some systems but it is not required for SSL.
secure_protocolDefines the protocol (e.g., SSLv3_method) to use on the SSL request.
ciphersRequired if SSL enabled. Specifies a list of SSL ciphers to use.
ecdhCurveDuring testing on some Node 8 environments, you need to set `ecdhCurve` to auto. If you do not, you will receive PROTO errors when attempting the calls. This is the only usage of this property and to our knowledge it only impacts Node 8 and 9.

Throttle Properties

The throttle section is used when requests to HashiCorpVault must be queued (throttled). All of the properties in this section are optional.

PropertyDescription
throttle_enabledDefault is false. Defines if the adapter should use throttling or not.
number_pronghornsDefault is 1. Defines if throttling is done in a single Itential instance or whether requests are being throttled across multiple Itential instances (minimum = 1, maximum = 20). Throttling in a single Itential instance uses an in-memory queue so there is less overhead. Throttling across multiple Itential instances requires placing the request and queue information into a shared resource (e.g. database) so that each instance can determine what is running and what is next to run. Throttling across multiple instances requires additional I/O overhead.
sync-asyncThis property is not used at the current time (it is for future expansion of the throttling engine).
max_in_queueRepresents the maximum number of requests the adapter should allow into the queue before rejecting requests (minimum = 1, maximum = 5000). This is not a limit on what the adapter can handle but more about timely responses to requests. The default is currently 1000.
concurrent_maxDefines the number of requests the adapter can send to HashiCorpVault at one time (minimum = 1, maximum = 1000). The default is 1 meaning each request must be sent to HashiCorpVault in a serial manner.
expire_timeoutDefault is 0. Defines a graceful timeout of the request session. After a request has completed, the adapter will wait additional time prior to sending the next request. Measured in milliseconds (minimum = 0, maximum = 60000).
average_runtimeRepresents the approximate average of how long it takes HashiCorpVault to handle each request. Measured in milliseconds (minimum = 50, maximum = 60000). Default is 200. This metric has performance implications. If the runtime number is set too low, it puts extra burden on the CPU and memory as the requests will continually try to run. If the runtime number is set too high, requests may wait longer than they need to before running. The number does not need to be exact but your throttling strategy depends heavily on this number being within reason. If averages range from 50 to 250 milliseconds you might pick an average run-time somewhere in the middle so that when HashiCorpVault performance is exceptional you might run a little slower than you might like, but when it is poor you still run efficiently.
prioritiesAn array of priorities and how to handle them in relation to the throttle queue. Array of objects that include priority value and percent of queue to put the item ex { value: 1, percent: 10 }

Proxy Properties

The proxy section defines the properties to utilize when HashiCorpVault is behind a proxy server.

PropertyDescription
enabledRequired. Default is false. If HashiCorpVault is behind a proxy server, set enabled flag to true.
hostHost information for the proxy server. Required if `enabled` is true.
portPort information for the proxy server. Required if `enabled` is true.
protocolThe protocol (i.e., http, https, etc.) used to connect to the proxy. Default is http.
usernameIf there is authentication for the proxy, provide the username here.
passwordIf there is authentication for the proxy, provide the password here.

Mongo Properties

The mongo section defines the properties used to connect to a Mongo database. Mongo can be used for throttling as well as to persist metric data. If not provided, metrics will be stored in the file system.

PropertyDescription
hostOptional. Host information for the mongo server.
portOptional. Port information for the mongo server.
databaseOptional. The database for the adapter to use for its data.
usernameOptional. If credentials are required to access mongo, this is the user to login as.
passwordOptional. If credentials are required to access mongo, this is the password to login with.
replSetOptional. If the database is set up to use replica sets, define it here so it can be added to the database connection.
db_sslOptional. Contains information for SSL connectivity to the database.
db_ssl -> enabledIf SSL is required, set to true.
db_ssl -> accept_invalid_certDefines if the adapter should accept invalid certificates (only recommended for lab environments). Required if SSL is enabled. Default is false.
db_ssl -> ca_fileDefines the path name to the CA file used for SSL. If SSL is enabled and the accept invalid certifications is false, then ca_file is required.
db_ssl -> key_fileDefines the path name to the Key file used for SSL. The key_file may be needed for some systems but it is not required for SSL.
db_ssl -> cert_fileDefines the path name to the Certificate file used for SSL. The cert_file may be needed for some systems but it is not required for SSL.

Device Broker Properties

The device broker section defines the properties used integrate HashiCorpVault to the device broker. Each broker call is represented and has an array of calls that can be used to build the response. This describes the calls and then the fields which are available in the calls.

PropertyDescription
getDeviceThe array of calls used to get device details for the broker
getDevicesFilteredThe array of calls used to get devices for the broker
isAliveThe array of calls used to get device status for the broker
getConfigThe array of calls used to get device configuration for the broker
getCountThe array of calls used to get device configuration for the broker
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> pathThe path, not including the base_path and version, for making this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> methodThe rest method for making this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> queryQuery object containing and query parameters and their values for this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> bodyBody object containing the payload for this call
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> headersHeader object containing the headers for this call.
getDevice/getDevicesFiltered/isAlive/getConfig/getCount -> handleFailureTells the adapter whether to "fail" or "ignore" failures if they occur.
isAlive -> statusValueTells the adapter what value to look for in the status field to determine if the device is alive.
getDevice/getDevicesFiltered/isAlive/getConfig -> requestFieldsObject containing fields the adapter should send on the request and where it should get the data. The where can be from a response to a getDevicesFiltered or a static value.
getDevice/getDevicesFiltered/isAlive/getConfig -> responseFieldsObject containing fields the adapter should set to send back to iap and where the value should come from in the response or request data.

Using this Adapter

The adapter.js file contains the calls the adapter makes available to the rest of the Itential Platform. The API detailed for these calls should be available through JSDOC. The following is a brief summary of the calls.

Generic Adapter Calls

These are adapter methods that IAP or you might use. There are some other methods not shown here that might be used for internal adapter functionality.

Method SignatureDescriptionWorkflow?
connect()This call is run when the Adapter is first loaded by he Itential Platform. It validates the properties have been provided correctly.No
healthCheck(callback)This call ensures that the adapter can communicate with HashiCorpVault. The actual call that is used is defined in the adapter properties and .system entities action.json file.No
refreshProperties(properties)This call provides the adapter the ability to accept property changes without having to restart the adapter.No
encryptProperty(property, technique, callback)This call will take the provided property and technique, and return the property encrypted with the technique. This allows the property to be used in the adapterProps section for the credential password so that the password does not have to be in clear text. The adapter will decrypt the property as needed for communications with HashiCorpVault.No
iapUpdateAdapterConfiguration(configFile, changes, entity, type, action, callback)This call provides the ability to update the adapter configuration from IAP - includes actions, schema, mockdata and other configurations.Yes
iapFindAdapterPath(apiPath, callback)This call provides the ability to see if a particular API path is supported by the adapter.Yes
iapSuspendAdapter(mode, callback)This call provides the ability to suspend the adapter and either have requests rejected or put into a queue to be processed after the adapter is resumed.Yes
iapUnsuspendAdapter(callback)This call provides the ability to resume a suspended adapter. Any requests in queue will be processed before new requests.Yes
iapGetAdapterQueue(callback)This call will return the requests that are waiting in the queue if throttling is enabled.Yes
iapTroubleshootAdapter(props, persistFlag, adapter, callback)This call can be used to check on the performance of the adapter - it checks connectivity, healthcheck and basic get calls.Yes
iapRunAdapterHealthcheck(adapter, callback)This call will return the results of a healthcheck.Yes
iapRunAdapterConnectivity(callback)This call will return the results of a connectivity check.Yes
iapRunAdapterBasicGet(callback)This call will return the results of running basic get API calls.Yes
iapMoveAdapterEntitiesToDB(callback)This call will push the adapter configuration from the entities directory into the Adapter or IAP Database.Yes
genericAdapterRequest(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)This call allows you to provide the path to have the adapter call. It is an easy way to incorporate paths that have not been built into the adapter yet.Yes
genericAdapterRequestNoBasePath(uriPath, restMethod, queryData, requestBody, addlHeaders, callback)This call is the same as the genericAdapterRequest only it does not add a base_path or version to the call.Yes
iapHasAdapterEntity(entityType, entityId, callback)This call verifies the adapter has the specific entity.No
iapVerifyAdapterCapability(entityType, actionType, entityId, callback)This call verifies the adapter can perform the provided action on the specific entity.No
iapUpdateAdapterEntityCache()This call will update the entity cache.No

Adapter Broker Calls

These are adapter methods that are used to integrate to IAP Brokers. This adapter currently supports the following broker calls.

Method SignatureDescriptionWorkflow?
hasEntities(entityType, entityList, callback)This call is utilized by the IAP Device Broker to determine if the adapter has a specific entity and item of the entity.No
getDevice(deviceName, callback)This call returns the details of the requested device.Yes
getDevicesFiltered(options, callback)This call returns the list of devices that match the criteria provided in the options filter.Yes
isAlive(deviceName, callback)This call returns whether the device status is activeYes
getConfig(deviceName, format, callback)This call returns the configuration for the selected device.Yes
iapGetDeviceCount(callback)This call returns the count of devices.Yes

Specific Adapter Calls

Specific adapter calls are built based on the API of the HashiCorpVault. The Adapter Builder creates the proper method comments for generating JS-DOC for the adapter. This is the best way to get information on the calls.

Method SignatureDescriptionPathWorkflow?
getKvSecretConfig(namespace, secretMount, callback)Retrieves the current configuration for the secrets backend at the given path{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
postKvSecretConfig(namespace, secretMount, body, callback)Configure backend level settings that are applied to every key in the key-value store.{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
getKvSecretDataPath(namespace, secretMount, pathParam, callback)Retrieves the secret at the specified location.{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
postKvSecretDataPath(namespace, secretMount, pathParam, body, callback)Creates a new version of a secret at the specified location{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
deleteKvSecretDataPath(namespace, secretMount, pathParam, callback)Issues a soft delete of the secret's latest version at the specified location.{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
postKvSecretDeletePath(namespace, secretMount, pathParam, body, callback)Issues a soft delete of the specified versions of the secret{base_path}/{version}/{pathv1}/{pathv2}/delete/{pathv3}?{query}Yes
postKvSecretDestroyPath(namespace, secretMount, pathParam, body, callback)Permanently removes the specified version data for the provided key and version numbers from the secret store.{base_path}/{version}/{pathv1}/{pathv2}/destroy/{pathv3}?{query}Yes
getKvSecretMetadataPath(namespace, secretMount, pathParam, list, callback)Retrieves the metadata and versions for the secret at the specified path.{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
postKvSecretMetadataPath(namespace, secretMount, pathParam, body, callback)Creates or updates the metadata of a secret at the specified location.{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
deleteKvSecretMetadataPath(namespace, secretMount, pathParam, callback)Permanently deletes the key metadata and all version data for the specified key.{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
postKvSecretUndeletePath(namespace, secretMount, pathParam, body, callback)Undeletes the data for the provided version and path in the secret store.{base_path}/{version}/{pathv1}/{pathv2}/undelete/{pathv3}?{query}Yes
getCubbyholeSecretPath(namespace, secretMount, pathParam, list, callback)Retrieves the secret at the specified location.{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
postCubbyholeSecretPath(namespace, secretMount, pathParam, callback)Store a secret at the specified location.{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
deleteCubbyholeSecretPath(namespace, secretMount, pathParam, callback)Deletes the secret at the specified location.{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
getPkiSecretCa(namespace, secretMount, callback)Retrieves the CA certificate in raw DER-encoded form{base_path}/{version}/{pathv1}/{pathv2}/ca?{query}Yes
getPkiSecretCaPem(namespace, secretMount, callback)Retrieves the CA certificate in raw PEM form{base_path}/{version}/{pathv1}/{pathv2}/ca/pem?{query}Yes
getPkiSecretCaChain(namespace, secretMount, callback)Retrieves the CA certificate chain, including the CA in PEM format.{base_path}/{version}/{pathv1}/{pathv2}/ca_chain?{query}Yes
getPkiSecretCertCaChain(namespace, secretMount, callback)Retrieves the CA certificate chain, including the CA in PEM format.{base_path}/{version}/{pathv1}/{pathv2}/cert/ca_chain?{query}Yes
getPkiSecretCertCrl(namespace, secretMount, callback)Retrieves one of a selection of certificates.{base_path}/{version}/{pathv1}/{pathv2}/cert/crl?{query}Yes
getPkiSecretCertSerial(namespace, secretMount, serial, callback)Retrieves one of a selection of certificates.{base_path}/{version}/{pathv1}/{pathv2}/cert/{pathv3}?{query}Yes
getPkiSecretCerts(namespace, secretMount, list, callback)Returns the current certificates{base_path}/{version}/{pathv1}/{pathv2}/certs?{query}Yes
postPkiSecretConfigCa(namespace, secretMount, body, callback)Set the CA information for the backend via a PEM file containing the CA certificate and its private key, concatenated.{base_path}/{version}/{pathv1}/{pathv2}/config/ca?{query}Yes
getPkiSecretConfigCrl(namespace, secretMount, callback)Retrieves the duration for which the generated CRL should be marked valid.{base_path}/{version}/{pathv1}/{pathv2}/config/crl?{query}Yes
postPkiSecretConfigCrl(namespace, secretMount, body, callback)Sets the duration for which the generated CRL should be marked valid.{base_path}/{version}/{pathv1}/{pathv2}/config/crl?{query}Yes
getPkiSecretConfigUrls(namespace, secretMount, callback)Fetches the URLs to be encoded in generated certificates.{base_path}/{version}/{pathv1}/{pathv2}/config/urls?{query}Yes
postPkiSecretConfigUrls(namespace, secretMount, body, callback)Sets the issuing certificate endpoints, CRL distribution points, and OCSP server endpoints that will be encoded into issued certificates.{base_path}/{version}/{pathv1}/{pathv2}/config/urls?{query}Yes
getPkiSecretCrl(namespace, secretMount, callback)Retrieves the current CRL in raw DER-encoded form.{base_path}/{version}/{pathv1}/{pathv2}/crl?{query}Yes
getPkiSecretCrlPem(namespace, secretMount, callback)Retrieves the current CRL in raw PEM form.{base_path}/{version}/{pathv1}/{pathv2}/crl/pem?{query}Yes
getPkiSecretCrlRotate(namespace, secretMount, callback)Forces a rotation of the CRL.{base_path}/{version}/{pathv1}/{pathv2}/crl/rotate?{query}Yes
postPkiSecretGenerateIntermediate(namespace, secretMount, exported, body, callback)Generates a new private key and a CSR for signing.{base_path}/{version}/{pathv1}/{pathv2}/intermediate/generate/{pathv3}?{query}Yes
postPkiSecretSetSignedIntermediate(namespace, secretMount, body, callback)Allows submitting the signed CA certificate corresponding to a private key generated via /pki/intermediate/generate.{base_path}/{version}/{pathv1}/{pathv2}/intermediate/set-signed?{query}Yes
postPkiSecretIssueCert(namespace, secretMount, role, body, callback)Generates a new set of credentials (private key and certificate) based on the role named in the endpoint.{base_path}/{version}/{pathv1}/{pathv2}/issue/{pathv3}?{query}Yes
postPkiSecretRevokeCert(namespace, secretMount, body, callback)Revoke a certificate by serial number.{base_path}/{version}/{pathv1}/{pathv2}/revoke?{query}Yes
listPkiSecretRoles(namespace, secretMount, list, callback)List the existing roles in this backend{base_path}/{version}/{pathv1}/{pathv2}/roles?{query}Yes
getPkiSecretRolesName(namespace, secretMount, name, callback)Queries the role definition.{base_path}/{version}/{pathv1}/{pathv2}/roles/{pathv3}?{query}Yes
postPkiSecretRolesName(namespace, secretMount, name, body, callback)Creates or updates the role definition.{base_path}/{version}/{pathv1}/{pathv2}/roles/{pathv3}?{query}Yes
deletePkiSecretRolesName(namespace, secretMount, name, callback)Deletes the role definition.{base_path}/{version}/{pathv1}/{pathv2}/roles/{pathv3}?{query}Yes
deletePkiSecretRoot(namespace, secretMount, callback)Deletes the root CA key to allow a new one to be generated.{base_path}/{version}/{pathv1}/{pathv2}/root?{query}Yes
postPkiSecretGenerateRoot(namespace, secretMount, exported, body, callback)Generates a new self-signed CA certificate and private key.{base_path}/{version}/{pathv1}/{pathv2}/root/generate/{pathv3}?{query}Yes
postPkiSecretSignIntermediateRoot(namespace, secretMount, body, callback)Issue an intermediate CA certificate based on the provided CSR.{base_path}/{version}/{pathv1}/{pathv2}/root/sign-intermediate?{query}Yes
postPkiSecretRootSignSelfIssued(namespace, secretMount, body, callback)Signs another CA's self-issued certificate.{base_path}/{version}/{pathv1}/{pathv2}/root/sign-self-issued?{query}Yes
postPkiSecretSignVerbatim(namespace, secretMount, body, callback)Signs a new certificate based upon the provided CSR.{base_path}/{version}/{pathv1}/{pathv2}/sign-verbatim?{query}Yes
postPkiSecretSignVerbatimName(namespace, secretMount, role, body, callback)Signs a new certificate based upon the provided CSR. Values are taken verbatim from the CSR.{base_path}/{version}/{pathv1}/{pathv2}/sign-verbatim/{pathv3}?{query}Yes
postPkiSecretSignRole(namespace, secretMount, role, body, callback)Sign certificates using a certain role with the provided details.{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postPkiSecretTidy(namespace, secretMount, body, callback)Tidy up the backend by removing expired certificates, revocation information, or both.{base_path}/{version}/{pathv1}/{pathv2}/tidy?{query}Yes
postAuthApproleLogin(body, callback)Issue a token based on the credentials supplied{base_path}/{version}/auth/approle/login?{query}Yes
getAuthApproleRole(list, callback)Lists all the roles registered with the backend.{base_path}/{version}/auth/approle/role?{query}Yes
getAuthApproleRoleRoleName(roleName, callback)Register an role with the backend.{base_path}/{version}/auth/approle/role/{pathv1}?{query}Yes
postAuthApproleRoleRoleName(roleName, body, callback)Register an role with the backend.{base_path}/{version}/auth/approle/role/{pathv1}?{query}Yes
deleteAuthApproleRoleRoleName(roleName, callback)Register an role with the backend.{base_path}/{version}/auth/approle/role/{pathv1}?{query}Yes
getAuthApproleRoleRoleNameBindSecretId(roleName, callback)Impose secret_id to be presented during login using this role.{base_path}/{version}/auth/approle/role/{pathv1}/bind-secret-id?{query}Yes
postAuthApproleRoleRoleNameBindSecretId(roleName, body, callback)Impose secret_id to be presented during login using this role.{base_path}/{version}/auth/approle/role/{pathv1}/bind-secret-id?{query}Yes
deleteAuthApproleRoleRoleNameBindSecretId(roleName, callback)Impose secret_id to be presented during login using this role.{base_path}/{version}/auth/approle/role/{pathv1}/bind-secret-id?{query}Yes
getAuthApproleRoleRoleNameBoundCidrList(roleName, callback)Deprecated: Comma separated list of CIDR blocks, if set, specifies blocks of IP addresses which can{base_path}/{version}/auth/approle/role/{pathv1}/bound-cidr-list?{query}Yes
postAuthApproleRoleRoleNameBoundCidrList(roleName, body, callback)Deprecated: Comma separated list of CIDR blocks, if set, specifies blocks of IP addresses which can{base_path}/{version}/auth/approle/role/{pathv1}/bound-cidr-list?{query}Yes
deleteAuthApproleRoleRoleNameBoundCidrList(roleName, callback)Deprecated: Comma separated list of CIDR blocks, if set, specifies blocks of IP addresses which can{base_path}/{version}/auth/approle/role/{pathv1}/bound-cidr-list?{query}Yes
postAuthApproleRoleRoleNameCustomSecretId(roleName, body, callback)Assign a SecretID of choice against the role.{base_path}/{version}/auth/approle/role/{pathv1}/custom-secret-id?{query}Yes
getAuthApproleRoleRoleNameLocalSecretIds(roleName, callback)Enables cluster local secret IDs{base_path}/{version}/auth/approle/role/{pathv1}/local-secret-ids?{query}Yes
getAuthApproleRoleRoleNamePeriod(roleName, callback)Updates the value of 'period' on the role{base_path}/{version}/auth/approle/role/{pathv1}/period?{query}Yes
postAuthApproleRoleRoleNamePeriod(roleName, body, callback)Updates the value of 'period' on the role{base_path}/{version}/auth/approle/role/{pathv1}/period?{query}Yes
deleteAuthApproleRoleRoleNamePeriod(roleName, callback)Updates the value of 'period' on the role{base_path}/{version}/auth/approle/role/{pathv1}/period?{query}Yes
getAuthApproleRoleRoleNamePolicies(roleName, callback)Policies of the role.{base_path}/{version}/auth/approle/role/{pathv1}/policies?{query}Yes
postAuthApproleRoleRoleNamePolicies(roleName, body, callback)Policies of the role.{base_path}/{version}/auth/approle/role/{pathv1}/policies?{query}Yes
deleteAuthApproleRoleRoleNamePolicies(roleName, callback)Policies of the role.{base_path}/{version}/auth/approle/role/{pathv1}/policies?{query}Yes
getAuthApproleRoleRoleNameRoleId(roleName, callback)Returns the 'role_id' of the role.{base_path}/{version}/auth/approle/role/{pathv1}/role-id?{query}Yes
postAuthApproleRoleRoleNameRoleId(roleName, body, callback)Returns the 'role_id' of the role.{base_path}/{version}/auth/approle/role/{pathv1}/role-id?{query}Yes
getAuthApproleRoleRoleNameSecretId(roleName, list, callback)Generate a SecretID against this role.{base_path}/{version}/auth/approle/role/{pathv1}/secret-id?{query}Yes
postAuthApproleRoleRoleNameSecretId(roleName, body, callback)Generate a SecretID against this role.{base_path}/{version}/auth/approle/role/{pathv1}/secret-id?{query}Yes
postAuthApproleRoleRoleNameSecretIdAccessorDestroy(roleName, body, callback)postAuthApproleRoleRole_nameSecretIdAccessorDestroy{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-accessor/destroy?{query}Yes
deleteAuthApproleRoleRoleNameSecretIdAccessorDestroy(roleName, callback)deleteAuthApproleRoleRole_nameSecretIdAccessorDestroy{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-accessor/destroy?{query}Yes
postAuthApproleRoleRoleNameSecretIdAccessorLookup(roleName, body, callback)postAuthApproleRoleRole_nameSecretIdAccessorLookup{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-accessor/lookup?{query}Yes
getAuthApproleRoleRoleNameSecretIdBoundCidrs(roleName, callback)Comma separated list of CIDR blocks, if set, specifies blocks of IP addresses which can perform the{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-bound-cidrs?{query}Yes
postAuthApproleRoleRoleNameSecretIdBoundCidrs(roleName, body, callback)Comma separated list of CIDR blocks, if set, specifies blocks of IP addresses which can perform the{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-bound-cidrs?{query}Yes
deleteAuthApproleRoleRoleNameSecretIdBoundCidrs(roleName, callback)Comma separated list of CIDR blocks, if set, specifies blocks of IP addresses which can perform the{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-bound-cidrs?{query}Yes
getAuthApproleRoleRoleNameSecretIdNumUses(roleName, callback)Use limit of the SecretID generated against the role.{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-num-uses?{query}Yes
postAuthApproleRoleRoleNameSecretIdNumUses(roleName, body, callback)Use limit of the SecretID generated against the role.{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-num-uses?{query}Yes
deleteAuthApproleRoleRoleNameSecretIdNumUses(roleName, callback)Use limit of the SecretID generated against the role.{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-num-uses?{query}Yes
getAuthApproleRoleRoleNameSecretIdTtl(roleName, callback)Duration in seconds, representing the lifetime of the SecretIDs that are generated against the role{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-ttl?{query}Yes
postAuthApproleRoleRoleNameSecretIdTtl(roleName, body, callback)Duration in seconds, representing the lifetime of the SecretIDs that are generated against the role{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-ttl?{query}Yes
deleteAuthApproleRoleRoleNameSecretIdTtl(roleName, callback)Duration in seconds, representing the lifetime of the SecretIDs that are generated against the role{base_path}/{version}/auth/approle/role/{pathv1}/secret-id-ttl?{query}Yes
postAuthApproleRoleRoleNameSecretIdDestroy(roleName, body, callback)Invalidate an issued secret_id{base_path}/{version}/auth/approle/role/{pathv1}/secret-id/destroy?{query}Yes
deleteAuthApproleRoleRoleNameSecretIdDestroy(roleName, callback)Invalidate an issued secret_id{base_path}/{version}/auth/approle/role/{pathv1}/secret-id/destroy?{query}Yes
postAuthApproleRoleRoleNameSecretIdLookup(roleName, body, callback)Read the properties of an issued secret_id{base_path}/{version}/auth/approle/role/{pathv1}/secret-id/lookup?{query}Yes
getAuthApproleRoleRoleNameTokenBoundCidrs(roleName, callback)Comma separated string or list of CIDR blocks. If set, specifies the blocks of IP addresses which c{base_path}/{version}/auth/approle/role/{pathv1}/token-bound-cidrs?{query}Yes
postAuthApproleRoleRoleNameTokenBoundCidrs(roleName, body, callback)Comma separated string or list of CIDR blocks. If set, specifies the blocks of IP addresses which c{base_path}/{version}/auth/approle/role/{pathv1}/token-bound-cidrs?{query}Yes
deleteAuthApproleRoleRoleNameTokenBoundCidrs(roleName, callback)Comma separated string or list of CIDR blocks. If set, specifies the blocks of IP addresses which c{base_path}/{version}/auth/approle/role/{pathv1}/token-bound-cidrs?{query}Yes
getAuthApproleRoleRoleNameTokenMaxTtl(roleName, callback)Duration in seconds, the maximum lifetime of the tokens issued by using the SecretIDs that were gen{base_path}/{version}/auth/approle/role/{pathv1}/token-max-ttl?{query}Yes
postAuthApproleRoleRoleNameTokenMaxTtl(roleName, body, callback)Duration in seconds, the maximum lifetime of the tokens issued by using the SecretIDs that were gen{base_path}/{version}/auth/approle/role/{pathv1}/token-max-ttl?{query}Yes
deleteAuthApproleRoleRoleNameTokenMaxTtl(roleName, callback)Duration in seconds, the maximum lifetime of the tokens issued by using the SecretIDs that were gen{base_path}/{version}/auth/approle/role/{pathv1}/token-max-ttl?{query}Yes
getAuthApproleRoleRoleNameTokenNumUses(roleName, callback)Number of times issued tokens can be used{base_path}/{version}/auth/approle/role/{pathv1}/token-num-uses?{query}Yes
postAuthApproleRoleRoleNameTokenNumUses(roleName, body, callback)Number of times issued tokens can be used{base_path}/{version}/auth/approle/role/{pathv1}/token-num-uses?{query}Yes
deleteAuthApproleRoleRoleNameTokenNumUses(roleName, callback)Number of times issued tokens can be used{base_path}/{version}/auth/approle/role/{pathv1}/token-num-uses?{query}Yes
getAuthApproleRoleRoleNameTokenTtl(roleName, callback)Duration in seconds, the lifetime of the token issued by using the SecretID that is generated again{base_path}/{version}/auth/approle/role/{pathv1}/token-ttl?{query}Yes
postAuthApproleRoleRoleNameTokenTtl(roleName, body, callback)Duration in seconds, the lifetime of the token issued by using the SecretID that is generated again{base_path}/{version}/auth/approle/role/{pathv1}/token-ttl?{query}Yes
deleteAuthApproleRoleRoleNameTokenTtl(roleName, callback)Duration in seconds, the lifetime of the token issued by using the SecretID that is generated again{base_path}/{version}/auth/approle/role/{pathv1}/token-ttl?{query}Yes
postAuthApproleTidySecretId(callback)Trigger the clean-up of expired SecretID entries.{base_path}/{version}/auth/approle/tidy/secret-id?{query}Yes
getAuthLdapConfig(callback)Configure the LDAP server to connect to, along with its options.{base_path}/{version}/auth/ldap/config?{query}Yes
postAuthLdapConfig(body, callback)Configure the LDAP server to connect to, along with its options.{base_path}/{version}/auth/ldap/config?{query}Yes
postAuthLdapDuoAccess(body, callback)Configure the access keys and host for Duo API connections.{base_path}/{version}/auth/ldap/duo/access?{query}Yes
getAuthLdapDuoConfig(callback)Configure Duo second factor behavior.{base_path}/{version}/auth/ldap/duo/config?{query}Yes
postAuthLdapDuoConfig(body, callback)Configure Duo second factor behavior.{base_path}/{version}/auth/ldap/duo/config?{query}Yes
getAuthLdapGroups(list, callback)Manage additional groups for users allowed to authenticate.{base_path}/{version}/auth/ldap/groups?{query}Yes
getAuthLdapGroupsName(name, callback)Manage additional groups for users allowed to authenticate.{base_path}/{version}/auth/ldap/groups/{pathv1}?{query}Yes
postAuthLdapGroupsName(name, body, callback)Manage additional groups for users allowed to authenticate.{base_path}/{version}/auth/ldap/groups/{pathv1}?{query}Yes
deleteAuthLdapGroupsName(name, callback)Manage additional groups for users allowed to authenticate.{base_path}/{version}/auth/ldap/groups/{pathv1}?{query}Yes
postAuthLdapLoginUsername(username, body, callback)Log in with a username and password.{base_path}/{version}/auth/ldap/login/{pathv1}?{query}Yes
getAuthLdapMfaConfig(callback)Configure multi factor backend.{base_path}/{version}/auth/ldap/mfa_config?{query}Yes
postAuthLdapMfaConfig(body, callback)Configure multi factor backend.{base_path}/{version}/auth/ldap/mfa_config?{query}Yes
getAuthLdapUsers(list, callback)Manage users allowed to authenticate.{base_path}/{version}/auth/ldap/users?{query}Yes
getAuthLdapUsersName(name, callback)Manage users allowed to authenticate.{base_path}/{version}/auth/ldap/users/{pathv1}?{query}Yes
postAuthLdapUsersName(name, body, callback)Manage users allowed to authenticate.{base_path}/{version}/auth/ldap/users/{pathv1}?{query}Yes
deleteAuthLdapUsersName(name, callback)Manage users allowed to authenticate.{base_path}/{version}/auth/ldap/users/{pathv1}?{query}Yes
getAuthRancherConfig(callback)Configures the JWT Public Key and Kubernetes API information.{base_path}/{version}/auth/rancher/config?{query}Yes
postAuthRancherConfig(body, callback)Configures the JWT Public Key and Kubernetes API information.{base_path}/{version}/auth/rancher/config?{query}Yes
postAuthRancherLogin(body, callback)Authenticates Kubernetes service accounts with Vault.{base_path}/{version}/auth/rancher/login?{query}Yes
getAuthRancherRole(list, callback)Lists all the roles registered with the backend.{base_path}/{version}/auth/rancher/role?{query}Yes
getAuthRancherRoleName(name, callback)Register an role with the backend.{base_path}/{version}/auth/rancher/role/{pathv1}?{query}Yes
postAuthRancherRoleName(name, body, callback)Register an role with the backend.{base_path}/{version}/auth/rancher/role/{pathv1}?{query}Yes
deleteAuthRancherRoleName(name, callback)Register an role with the backend.{base_path}/{version}/auth/rancher/role/{pathv1}?{query}Yes
getAuthTokenAccessors(list, callback)List token accessors, which can then be be used to iterate and discover their properties or revoke{base_path}/{version}/auth/token/accessors/?{query}Yes
postAuthTokenCreateWithNamespaceHeader(namespace, callback)The token create path is used to create new token with specified X-Vault-Namespace header.{base_path}/{version}/auth/token/create?{query}Yes
postAuthTokenCreateOrphan(callback)The token create path is used to create new orphan tokens.{base_path}/{version}/auth/token/create-orphan?{query}Yes
postAuthTokenCreateRoleName(roleName, callback)This token create path is used to create new tokens adhering to the given role.{base_path}/{version}/auth/token/create/{pathv1}?{query}Yes
getAuthTokenLookup(callback)This endpoint will lookup a token and its properties.{base_path}/{version}/auth/token/lookup?{query}Yes
postAuthTokenLookup(body, callback)This endpoint will lookup a token and its properties.{base_path}/{version}/auth/token/lookup?{query}Yes
postAuthTokenLookupAccessor(body, callback)This endpoint will lookup a token associated with the given accessor and its properties. Response w{base_path}/{version}/auth/token/lookup-accessor?{query}Yes
getAuthTokenLookupSelf(callback)This endpoint will lookup a token and its properties.{base_path}/{version}/auth/token/lookup-self?{query}Yes
postAuthTokenLookupSelf(body, callback)This endpoint will lookup a token and its properties.{base_path}/{version}/auth/token/lookup-self?{query}Yes
postAuthTokenRenew(body, callback)This endpoint will renew the given token and prevent expiration.{base_path}/{version}/auth/token/renew?{query}Yes
postAuthTokenRenewAccessor(body, callback)This endpoint will renew a token associated with the given accessor and its properties. Response wi{base_path}/{version}/auth/token/renew-accessor?{query}Yes
postAuthTokenRenewSelf(body, callback)This endpoint will renew the token used to call it and prevent expiration.{base_path}/{version}/auth/token/renew-self?{query}Yes
postAuthTokenRevoke(body, callback)This endpoint will delete the given token and all of its child tokens.{base_path}/{version}/auth/token/revoke?{query}Yes
postAuthTokenRevokeAccessor(body, callback)This endpoint will delete the token associated with the accessor and all of its child tokens.{base_path}/{version}/auth/token/revoke-accessor?{query}Yes
postAuthTokenRevokeOrphan(body, callback)This endpoint will delete the token and orphan its child tokens.{base_path}/{version}/auth/token/revoke-orphan?{query}Yes
postAuthTokenRevokeSelf(callback)This endpoint will delete the token used to call it and all of its child tokens.{base_path}/{version}/auth/token/revoke-self?{query}Yes
getAuthTokenRoles(list, callback)This endpoint lists configured roles.{base_path}/{version}/auth/token/roles?{query}Yes
getAuthTokenRolesRoleName(roleName, callback)getAuthTokenRolesRole_name{base_path}/{version}/auth/token/roles/{pathv1}?{query}Yes
postAuthTokenRolesRoleName(roleName, body, callback)postAuthTokenRolesRole_name{base_path}/{version}/auth/token/roles/{pathv1}?{query}Yes
deleteAuthTokenRolesRoleName(roleName, callback)deleteAuthTokenRolesRole_name{base_path}/{version}/auth/token/roles/{pathv1}?{query}Yes
postAuthTokenTidy(callback)This endpoint performs cleanup tasks that can be run if certain error conditions have occurred.{base_path}/{version}/auth/token/tidy?{query}Yes
postIdentityAlias(namespace, body, callback)Create a new alias.{base_path}/{version}/{pathv1}/identity/alias?{query}Yes
getIdentityAliases(namespace, list, callback)List all the alias IDs.{base_path}/{version}/{pathv1}/identity/alias/id?{query}Yes
getIdentityAliasById(namespace, id, callback)Get Identity alias By ID.{base_path}/{version}/{pathv1}/identity/alias/id/{pathv2}?{query}Yes
updateIdentityAliasById(namespace, id, body, callback)Update Identity alias By ID{base_path}/{version}/{pathv1}/identity/alias/id/{pathv2}?{query}Yes
deleteIdentityAliasById(namespace, id, callback)Delete Identity alias By ID.{base_path}/{version}/{pathv1}/identity/alias/id/{pathv2}?{query}Yes
postIdentityEntity(namespace, body, callback)Create a new entity{base_path}/{version}/{pathv1}/identity/entity?{query}Yes
postIdentityEntityAlias(namespace, body, callback)Create a new entity alias.{base_path}/{version}/{pathv1}/identity/entity-alias?{query}Yes
getIdentityEntityAliases(namespace, list, callback)List all the entity alias IDs.{base_path}/{version}/{pathv1}/identity/entity-alias/id?{query}Yes
getIdentityEntityAliasById(namespace, id, callback)Get Identity entity alias by ID.{base_path}/{version}/{pathv1}/identity/entity-alias/id/{pathv2}?{query}Yes
updateIdentityEntityAliasById(namespace, id, body, callback)Update Identity entity alias by ID.{base_path}/{version}/{pathv1}/identity/entity-alias/id/{pathv2}?{query}Yes
deleteIdentityEntityAliasById(namespace, id, callback)Delete Identity entity alias by ID.{base_path}/{version}/{pathv1}/identity/entity-alias/id/{pathv2}?{query}Yes
postIdentityEntityBatchDelete(namespace, body, callback)Delete all of the entities provided{base_path}/{version}/{pathv1}/identity/entity/batch-delete?{query}Yes
getIdentityEntities(namespace, list, callback)List all the entity IDs{base_path}/{version}/{pathv1}/identity/entity/id?{query}Yes
getIdentityEntityById(namespace, id, callback)Get Identity entity using entity ID{base_path}/{version}/{pathv1}/identity/entity/id/{pathv2}?{query}Yes
updateIdentityEntityById(namespace, id, body, callback)Update Identity entity using entity ID{base_path}/{version}/{pathv1}/identity/entity/id/{pathv2}?{query}Yes
deleteIdentityEntityById(namespace, id, callback)Delete Identity entity using entity ID{base_path}/{version}/{pathv1}/identity/entity/id/{pathv2}?{query}Yes
postIdentityEntityMerge(namespace, body, callback)Merge two or more entities together{base_path}/{version}/{pathv1}/identity/entity/merge?{query}Yes
getIdentityEntityNames(namespace, list, callback)List all the entity names{base_path}/{version}/{pathv1}/identity/entity/name?{query}Yes
getIdentityEntityByName(namespace, name, callback)Get Identity entity using entity name{base_path}/{version}/{pathv1}/identity/entity/name/{pathv2}?{query}Yes
updateIdentityEntityByName(namespace, name, body, callback)Update Identity entity using entity name{base_path}/{version}/{pathv1}/identity/entity/name/{pathv2}?{query}Yes
deleteIdentityEntityByName(namespace, name, callback)Delete Identity entity using entity name{base_path}/{version}/{pathv1}/identity/entity/name/{pathv2}?{query}Yes
postIdentityGroup(namespace, body, callback)Create a new group.{base_path}/{version}/{pathv1}/identity/group?{query}Yes
postIdentityGroupAlias(namespace, body, callback)Creates a new group alias, or updates an existing one.{base_path}/{version}/{pathv1}/identity/group-alias?{query}Yes
getIdentityGroupAliasId(namespace, list, callback)List all the group alias IDs.{base_path}/{version}/{pathv1}/identity/group-alias/id?{query}Yes
getIdentityGroupAliasById(namespace, id, callback)Get Identity Group Alias By Id{base_path}/{version}/{pathv1}/identity/group-alias/id/{pathv2}?{query}Yes
updateIdentityGroupAliasById(namespace, id, body, callback)Update Identity Group Alias By Id{base_path}/{version}/{pathv1}/identity/group-alias/id/{pathv2}?{query}Yes
deleteIdentityGroupAliasById(namespace, id, callback)Delete Identity Group Alias By Id{base_path}/{version}/{pathv1}/identity/group-alias/id/{pathv2}?{query}Yes
getIdentityGroups(namespace, list, callback)List all the group IDs.{base_path}/{version}/{pathv1}/identity/group/id?{query}Yes
getIdentityGroupById(namespace, id, callback)Get existing group using its ID.{base_path}/{version}/{pathv1}/identity/group/id/{pathv2}?{query}Yes
updateIdentityGroupById(namespace, id, body, callback)Update an existing group using its ID.{base_path}/{version}/{pathv1}/identity/group/id/{pathv2}?{query}Yes
deleteIdentityGroupById(namespace, id, callback)Delete an existing group using its ID.{base_path}/{version}/{pathv1}/identity/group/id/{pathv2}?{query}Yes
getIdentityGroupNames(namespace, list, callback)Get Identity Group Name{base_path}/{version}/{pathv1}/identity/group/name?{query}Yes
getIdentityGroupByName(namespace, name, callback)Get Identity Group By Name{base_path}/{version}/{pathv1}/identity/group/name/{pathv2}?{query}Yes
updateIdentityGroupByName(namespace, name, body, callback)Update Identity Group By Name{base_path}/{version}/{pathv1}/identity/group/name/{pathv2}?{query}Yes
deleteIdentityGroupByName(namespace, name, callback)Delete Identity Group By Name{base_path}/{version}/{pathv1}/identity/group/name/{pathv2}?{query}Yes
postIdentityLookupEntity(namespace, body, callback)Query entities based on various properties.{base_path}/{version}/{pathv1}/identity/lookup/entity?{query}Yes
postIdentityLookupGroup(namespace, body, callback)Query groups based on various properties.{base_path}/{version}/{pathv1}/identity/lookup/group?{query}Yes
getIdentityOidcWellKnownKeys(namespace, callback)Retrieve public keys{base_path}/{version}/{pathv1}/identity/oidc/.well-known/keys?{query}Yes
getIdentityOidcWellKnownOpenidConfiguration(namespace, callback)Query OIDC configurations{base_path}/{version}/{pathv1}/identity/oidc/.well-known/openid-configuration?{query}Yes
getIdentityOidcConfig(namespace, callback)OIDC configuration{base_path}/{version}/{pathv1}/identity/oidc/config?{query}Yes
postIdentityOidcConfig(namespace, body, callback)OIDC configuration{base_path}/{version}/{pathv1}/identity/oidc/config?{query}Yes
postIdentityOidcIntrospect(namespace, body, callback)Verify the authenticity of an OIDC token{base_path}/{version}/{pathv1}/identity/oidc/introspect?{query}Yes
getIdentityOidcKeys(namespace, list, callback)List OIDC keys{base_path}/{version}/{pathv1}/identity/oidc/key?{query}Yes
getIdentityOidcKeyByName(namespace, name, callback)CRUD operations for OIDC keys.{base_path}/{version}/{pathv1}/identity/oidc/key/{pathv2}?{query}Yes
updateIdentityOidcKeyByName(namespace, name, body, callback)Update for OIDC keys.{base_path}/{version}/{pathv1}/identity/oidc/key/{pathv2}?{query}Yes
deleteIdentityOidcKeyByName(namespace, name, callback)Delete for OIDC keys.{base_path}/{version}/{pathv1}/identity/oidc/key/{pathv2}?{query}Yes
postIdentityOidcKeyRotateByName(namespace, name, body, callback)Rotate a named OIDC key.{base_path}/{version}/{pathv1}/identity/oidc/key/{pathv2}/rotate?{query}Yes
getIdentityOidcRoles(namespace, list, callback)List configured OIDC roles{base_path}/{version}/{pathv1}/identity/oidc/role?{query}Yes
getIdentityOidcRoleByName(namespace, name, callback)Get OIDC Roles By Name{base_path}/{version}/{pathv1}/identity/oidc/role/{pathv2}?{query}Yes
updateIdentityOidcRoleByName(namespace, name, body, callback)Update OIDC Roles By Name{base_path}/{version}/{pathv1}/identity/oidc/role/{pathv2}?{query}Yes
deleteIdentityOidcRoleByName(namespace, name, callback)Delete OIDC Roles By Name{base_path}/{version}/{pathv1}/identity/oidc/role/{pathv2}?{query}Yes
getIdentityOidcTokenByName(namespace, name, callback)Generate an OIDC token{base_path}/{version}/{pathv1}/identity/oidc/token/{pathv2}?{query}Yes
postIdentityPersona(namespace, body, callback)Create a new alias.{base_path}/{version}/{pathv1}/identity/persona?{query}Yes
getIdentityPersonas(namespace, list, callback)List all the alias IDs.{base_path}/{version}/{pathv1}/identity/persona/id?{query}Yes
getIdentityPersonaById(namespace, id, callback)Get Identity Persona By ID.{base_path}/{version}/{pathv1}/identity/persona/id/{pathv2}?{query}Yes
updateIdentityPersonaById(namespace, id, body, callback)Update Identity Persona By ID.{base_path}/{version}/{pathv1}/identity/persona/id/{pathv2}?{query}Yes
deleteIdentityPersonaById(namespace, id, callback)Delete Identity Persona By ID.{base_path}/{version}/{pathv1}/identity/persona/id/{pathv2}?{query}Yes
getSysAudit(callback)List the enabled audit devices.{base_path}/{version}/sys/audit?{query}Yes
postSysAuditHashPath(pathParam, body, callback)The hash of the given string via the given audit backend{base_path}/{version}/sys/audit-hash/{pathv1}?{query}Yes
postSysAuditPath(pathParam, body, callback)Enable a new audit device at the supplied path.{base_path}/{version}/sys/audit/{pathv1}?{query}Yes
deleteSysAuditPath(pathParam, callback)Disable the audit device at the given path.{base_path}/{version}/sys/audit/{pathv1}?{query}Yes
getSysAuth(callback)List the currently enabled credential backends.{base_path}/{version}/sys/auth?{query}Yes
postSysAuthPath(pathParam, body, callback)Enables a new auth method.{base_path}/{version}/sys/auth/{pathv1}?{query}Yes
deleteSysAuthPath(pathParam, callback)Disable the auth method at the given auth path{base_path}/{version}/sys/auth/{pathv1}?{query}Yes
getSysAuthPathTune(pathParam, callback)Reads the given auth path's configuration.{base_path}/{version}/sys/auth/{pathv1}/tune?{query}Yes
postSysAuthPathTune(pathParam, body, callback)Tune configuration parameters for a given auth path.{base_path}/{version}/sys/auth/{pathv1}/tune?{query}Yes
postSysCapabilities(body, callback)Fetches the capabilities of the given token on the given path.{base_path}/{version}/sys/capabilities?{query}Yes
postSysCapabilitiesAccessor(body, callback)Fetches the capabilities of the token associated with the given token, on the given path.{base_path}/{version}/sys/capabilities-accessor?{query}Yes
postSysCapabilitiesSelf(body, callback)Fetches the capabilities of the given token on the given path.{base_path}/{version}/sys/capabilities-self?{query}Yes
getSysConfigAuditingRequestHeaders(callback)List the request headers that are configured to be audited.{base_path}/{version}/sys/config/auditing/request-headers?{query}Yes
getSysConfigAuditingRequestHeadersHeader(header, callback)List the information for the given request header.{base_path}/{version}/sys/config/auditing/request-headers/{pathv1}?{query}Yes
postSysConfigAuditingRequestHeadersHeader(header, body, callback)Enable auditing of a header.{base_path}/{version}/sys/config/auditing/request-headers/{pathv1}?{query}Yes
deleteSysConfigAuditingRequestHeadersHeader(header, callback)Disable auditing of the given request header.{base_path}/{version}/sys/config/auditing/request-headers/{pathv1}?{query}Yes
getSysConfigControlGroup(callback)Configure control group global settings.{base_path}/{version}/sys/config/control-group?{query}Yes
postSysConfigControlGroup(body, callback)Configure control group global settings.{base_path}/{version}/sys/config/control-group?{query}Yes
deleteSysConfigControlGroup(callback)Configure control group global settings.{base_path}/{version}/sys/config/control-group?{query}Yes
getSysConfigCors(callback)Return the current CORS settings.{base_path}/{version}/sys/config/cors?{query}Yes
postSysConfigCors(body, callback)Configure the CORS settings.{base_path}/{version}/sys/config/cors?{query}Yes
deleteSysConfigCors(callback)Remove any CORS settings.{base_path}/{version}/sys/config/cors?{query}Yes
getSysConfigStateSanitized(callback)Return a sanitized version of the Vault server configuration.{base_path}/{version}/sys/config/state/sanitized?{query}Yes
getSysConfigUiHeaders(list, callback)Return a list of configured UI headers.{base_path}/{version}/sys/config/ui/headers/?{query}Yes
getSysConfigUiHeadersHeader(header, callback)Return the given UI header's configuration{base_path}/{version}/sys/config/ui/headers/{pathv1}?{query}Yes
postSysConfigUiHeadersHeader(header, body, callback)Configure the values to be returned for the UI header.{base_path}/{version}/sys/config/ui/headers/{pathv1}?{query}Yes
deleteSysConfigUiHeadersHeader(header, callback)Remove a UI header.{base_path}/{version}/sys/config/ui/headers/{pathv1}?{query}Yes
postSysControlGroupAuthorize(body, callback)Authorize a control group request{base_path}/{version}/sys/control-group/authorize?{query}Yes
postSysControlGroupRequest(body, callback)Check the status of a control group request{base_path}/{version}/sys/control-group/request?{query}Yes
getSysGenerateRoot(callback)Read the configuration and progress of the current root generation attempt.{base_path}/{version}/sys/generate-root?{query}Yes
postSysGenerateRoot(body, callback)Initializes a new root generation attempt.{base_path}/{version}/sys/generate-root?{query}Yes
deleteSysGenerateRoot(callback)Cancels any in-progress root generation attempt.{base_path}/{version}/sys/generate-root?{query}Yes
getSysGenerateRootAttempt(callback)Read the configuration and progress of the current root generation attempt.{base_path}/{version}/sys/generate-root/attempt?{query}Yes
postSysGenerateRootAttempt(body, callback)Initializes a new root generation attempt.{base_path}/{version}/sys/generate-root/attempt?{query}Yes
deleteSysGenerateRootAttempt(callback)Cancels any in-progress root generation attempt.{base_path}/{version}/sys/generate-root/attempt?{query}Yes
postSysGenerateRootUpdate(body, callback)Enter a single master key share to progress the root generation attempt.{base_path}/{version}/sys/generate-root/update?{query}Yes
getSysHealth(callback)Returns the health status of Vault.{base_path}/{version}/sys/health?{query}Yes
getSysHostInfo(callback)Information about the host instance that this Vault server is running on.{base_path}/{version}/sys/host-info?{query}Yes
getSysInit(callback)Returns the initialization status of Vault.{base_path}/{version}/sys/init?{query}Yes
postSysInit(body, callback)Initialize a new Vault.{base_path}/{version}/sys/init?{query}Yes
getSysInternalSpecsOpenapi(callback)Generate an OpenAPI 3 document of all mounted paths.{base_path}/{version}/sys/internal/specs/openapi?{query}Yes
getSysInternalUiMounts(callback)Lists all enabled and visible auth and secrets mounts.{base_path}/{version}/sys/internal/ui/mounts?{query}Yes
getSysInternalUiMountsPath(pathParam, callback)Return information about the given mount.{base_path}/{version}/sys/internal/ui/mounts/{pathv1}?{query}Yes
getSysKeyStatus(callback)Provides information about the backend encryption key.{base_path}/{version}/sys/key-status?{query}Yes
getSysLeader(callback)Returns the high availability status and current leader instance of Vault.{base_path}/{version}/sys/leader?{query}Yes
postSysLeasesLookup(body, callback)Retrieve lease metadata.{base_path}/{version}/sys/leases/lookup?{query}Yes
getSysLeasesLookup(list, callback)Returns a list of lease ids.{base_path}/{version}/sys/leases/lookup/?{query}Yes
getSysLeasesLookupPrefix(prefix, list, callback)Returns a list of lease ids.{base_path}/{version}/sys/leases/lookup/{pathv1}?{query}Yes
postSysLeasesRenew(body, callback)Renews a lease, requesting to extend the lease.{base_path}/{version}/sys/leases/renew?{query}Yes
postSysLeasesRenewUrlLeaseId(urlLeaseId, body, callback)Renews a lease, requesting to extend the lease.{base_path}/{version}/sys/leases/renew/{pathv1}?{query}Yes
postSysLeasesRevoke(body, callback)Revokes a lease immediately.{base_path}/{version}/sys/leases/revoke?{query}Yes
postSysLeasesRevokeForcePrefix(prefix, callback)Revokes all secrets or tokens generated under a given prefix immediately{base_path}/{version}/sys/leases/revoke-force/{pathv1}?{query}Yes
postSysLeasesRevokePrefixPrefix(prefix, body, callback)Revokes all secrets (via a lease ID prefix) or tokens (via the tokens' path property) generated und{base_path}/{version}/sys/leases/revoke-prefix/{pathv1}?{query}Yes
postSysLeasesRevokeUrlLeaseId(urlLeaseId, body, callback)Revokes a lease immediately.{base_path}/{version}/sys/leases/revoke/{pathv1}?{query}Yes
postSysLeasesTidy(callback)This endpoint performs cleanup tasks that can be run if certain error conditions have occurred.{base_path}/{version}/sys/leases/tidy?{query}Yes
getSysLicense(callback)The path responds to the following HTTP methods.
GET /
    Returns information on the inst</td>
<td style="padding:15px">{base_path}/{version}/sys/license?{query}</td>
<td style="padding:15px">Yes</td>
postSysLicense(body, callback)The path responds to the following HTTP methods.
GET /
    Returns information on the inst</td>
<td style="padding:15px">{base_path}/{version}/sys/license?{query}</td>
<td style="padding:15px">Yes</td>
getSysMetrics(format, callback)Export the metrics aggregated for telemetry purpose.{base_path}/{version}/sys/metrics?{query}Yes
getSysMfaMethod(list, callback)Lists all the available MFA methods by their name.{base_path}/{version}/sys/mfa/method?{query}Yes
getSysMfaMethodDuoName(name, callback)Defines or updates a Duo MFA method.{base_path}/{version}/sys/mfa/method/duo/{pathv1}?{query}Yes
postSysMfaMethodDuoName(name, body, callback)Defines or updates a Duo MFA method.{base_path}/{version}/sys/mfa/method/duo/{pathv1}?{query}Yes
deleteSysMfaMethodDuoName(name, callback)Defines or updates a Duo MFA method.{base_path}/{version}/sys/mfa/method/duo/{pathv1}?{query}Yes
getSysMfaMethodOktaName(name, callback)Defines or updates an Okta MFA method.{base_path}/{version}/sys/mfa/method/okta/{pathv1}?{query}Yes
postSysMfaMethodOktaName(name, body, callback)Defines or updates an Okta MFA method.{base_path}/{version}/sys/mfa/method/okta/{pathv1}?{query}Yes
deleteSysMfaMethodOktaName(name, callback)Defines or updates an Okta MFA method.{base_path}/{version}/sys/mfa/method/okta/{pathv1}?{query}Yes
getSysMfaMethodPingidName(name, callback)Defines or updates a PingID MFA method.{base_path}/{version}/sys/mfa/method/pingid/{pathv1}?{query}Yes
postSysMfaMethodPingidName(name, body, callback)Defines or updates a PingID MFA method.{base_path}/{version}/sys/mfa/method/pingid/{pathv1}?{query}Yes
deleteSysMfaMethodPingidName(name, callback)Defines or updates a PingID MFA method.{base_path}/{version}/sys/mfa/method/pingid/{pathv1}?{query}Yes
getSysMfaMethodTotpName(name, callback)Defines or updates a TOTP MFA method.{base_path}/{version}/sys/mfa/method/totp/{pathv1}?{query}Yes
postSysMfaMethodTotpName(name, body, callback)Defines or updates a TOTP MFA method.{base_path}/{version}/sys/mfa/method/totp/{pathv1}?{query}Yes
deleteSysMfaMethodTotpName(name, callback)Defines or updates a TOTP MFA method.{base_path}/{version}/sys/mfa/method/totp/{pathv1}?{query}Yes
postSysMfaMethodTotpNameAdminDestroy(name, body, callback)Deletes the TOTP secret for the given method name on the given entity.{base_path}/{version}/sys/mfa/method/totp/{pathv1}/admin-destroy?{query}Yes
postSysMfaMethodTotpNameAdminGenerate(name, body, callback)Generates a TOTP secret for the given method name on the given entity.{base_path}/{version}/sys/mfa/method/totp/{pathv1}/admin-generate?{query}Yes
getSysMfaMethodTotpNameGenerate(name, callback)Generates a TOTP secret for the given method name on the entity of the calling token.{base_path}/{version}/sys/mfa/method/totp/{pathv1}/generate?{query}Yes
getSysMonitor(logLevel, callback)getSysMonitor{base_path}/{version}/sys/monitor?{query}Yes
getSysMounts(callback)List the currently mounted backends.{base_path}/{version}/sys/mounts?{query}Yes
postSysMountsPath(pathParam, body, callback)Enable a new secrets engine at the given path.{base_path}/{version}/sys/mounts/{pathv1}?{query}Yes
deleteSysMountsPath(pathParam, callback)Disable the mount point specified at the given path.{base_path}/{version}/sys/mounts/{pathv1}?{query}Yes
getSysMountsPathTune(pathParam, callback)Tune backend configuration parameters for this mount.{base_path}/{version}/sys/mounts/{pathv1}/tune?{query}Yes
postSysMountsPathTune(pathParam, body, callback)Tune backend configuration parameters for this mount.{base_path}/{version}/sys/mounts/{pathv1}/tune?{query}Yes
getSysNamespaces(list, callback)getSysNamespaces{base_path}/{version}/sys/namespaces?{query}Yes
getSysNamespacesPath(pathParam, callback)getSysNamespacesPath{base_path}/{version}/sys/namespaces/{pathv1}?{query}Yes
postSysNamespacesPath(pathParam, callback)postSysNamespacesPath{base_path}/{version}/sys/namespaces/{pathv1}?{query}Yes
deleteSysNamespacesPath(pathParam, callback)deleteSysNamespacesPath{base_path}/{version}/sys/namespaces/{pathv1}?{query}Yes
getSysPluginsCatalog(callback)Lists all the plugins known to Vault{base_path}/{version}/sys/plugins/catalog?{query}Yes
getSysPluginsCatalogName(name, callback)Return the configuration data for the plugin with the given name.{base_path}/{version}/sys/plugins/catalog/{pathv1}?{query}Yes
postSysPluginsCatalogName(name, body, callback)Register a new plugin, or updates an existing one with the supplied name.{base_path}/{version}/sys/plugins/catalog/{pathv1}?{query}Yes
deleteSysPluginsCatalogName(name, callback)Remove the plugin with the given name.{base_path}/{version}/sys/plugins/catalog/{pathv1}?{query}Yes
getSysPluginsCatalogType(type, list, callback)List the plugins in the catalog.{base_path}/{version}/sys/plugins/catalog/{pathv1}?{query}Yes
getSysPluginsCatalogTypeName(name, type, callback)Return the configuration data for the plugin with the given name.{base_path}/{version}/sys/plugins/catalog/{pathv1}/{pathv2}?{query}Yes
postSysPluginsCatalogTypeName(name, type, body, callback)Register a new plugin, or updates an existing one with the supplied name.{base_path}/{version}/sys/plugins/catalog/{pathv1}/{pathv2}?{query}Yes
deleteSysPluginsCatalogTypeName(name, type, callback)Remove the plugin with the given name.{base_path}/{version}/sys/plugins/catalog/{pathv1}/{pathv2}?{query}Yes
postSysPluginsReloadBackend(body, callback)Reload mounted plugin backends.{base_path}/{version}/sys/plugins/reload/backend?{query}Yes
getSysPluginsReloadBackendStatus(callback)Get the status of a cluster-scoped reload.{base_path}/{version}/sys/plugins/reload/backend/status?{query}Yes
getSysPoliciesAcl(list, callback)List the configured access control policies.{base_path}/{version}/sys/policies/acl?{query}Yes
getSysPoliciesAclName(name, callback)Retrieve information about the named ACL policy.{base_path}/{version}/sys/policies/acl/{pathv1}?{query}Yes
postSysPoliciesAclName(name, body, callback)Add a new or update an existing ACL policy.{base_path}/{version}/sys/policies/acl/{pathv1}?{query}Yes
deleteSysPoliciesAclName(name, callback)Delete the ACL policy with the given name.{base_path}/{version}/sys/policies/acl/{pathv1}?{query}Yes
getSysPoliciesEgp(list, callback)List the configured access control policies.{base_path}/{version}/sys/policies/egp?{query}Yes
getSysPoliciesEgpName(name, callback)Read, Modify, or Delete an access control policy.{base_path}/{version}/sys/policies/egp/{pathv1}?{query}Yes
postSysPoliciesEgpName(name, body, callback)Read, Modify, or Delete an access control policy.{base_path}/{version}/sys/policies/egp/{pathv1}?{query}Yes
deleteSysPoliciesEgpName(name, callback)Read, Modify, or Delete an access control policy.{base_path}/{version}/sys/policies/egp/{pathv1}?{query}Yes
getSysPoliciesPasswordName(name, callback)Retrieve an existing password policy.{base_path}/{version}/sys/policies/password/{pathv1}?{query}Yes
postSysPoliciesPasswordName(name, body, callback)Add a new or update an existing password policy.{base_path}/{version}/sys/policies/password/{pathv1}?{query}Yes
deleteSysPoliciesPasswordName(name, callback)Delete a password policy.{base_path}/{version}/sys/policies/password/{pathv1}?{query}Yes
getSysPoliciesPasswordNameGenerate(name, callback)Generate a password from an existing password policy.{base_path}/{version}/sys/policies/password/{pathv1}/generate?{query}Yes
getSysPoliciesRgp(list, callback)List the configured access control policies.{base_path}/{version}/sys/policies/rgp?{query}Yes
getSysPoliciesRgpName(name, callback)Read, Modify, or Delete an access control policy.{base_path}/{version}/sys/policies/rgp/{pathv1}?{query}Yes
postSysPoliciesRgpName(name, body, callback)Read, Modify, or Delete an access control policy.{base_path}/{version}/sys/policies/rgp/{pathv1}?{query}Yes
deleteSysPoliciesRgpName(name, callback)Read, Modify, or Delete an access control policy.{base_path}/{version}/sys/policies/rgp/{pathv1}?{query}Yes
getSysPolicy(list, callback)List the configured access control policies.{base_path}/{version}/sys/policy?{query}Yes
getSysPolicyName(name, callback)Retrieve the policy body for the named policy.{base_path}/{version}/sys/policy/{pathv1}?{query}Yes
postSysPolicyName(name, body, callback)Add a new or update an existing policy.{base_path}/{version}/sys/policy/{pathv1}?{query}Yes
deleteSysPolicyName(name, callback)Delete the policy with the given name.{base_path}/{version}/sys/policy/{pathv1}?{query}Yes
getSysPprof(callback)Returns an HTML page listing the available profiles.{base_path}/{version}/sys/pprof/?{query}Yes
getSysPprofCmdline(callback)Returns the running program's command line.{base_path}/{version}/sys/pprof/cmdline?{query}Yes
getSysPprofGoroutine(callback)Returns stack traces of all current goroutines.{base_path}/{version}/sys/pprof/goroutine?{query}Yes
getSysPprofHeap(callback)Returns a sampling of memory allocations of live object.{base_path}/{version}/sys/pprof/heap?{query}Yes
getSysPprofProfile(callback)Returns a pprof-formatted cpu profile payload.{base_path}/{version}/sys/pprof/profile?{query}Yes
getSysPprofSymbol(callback)Returns the program counters listed in the request.{base_path}/{version}/sys/pprof/symbol?{query}Yes
getSysPprofTrace(callback)Returns the execution trace in binary form.{base_path}/{version}/sys/pprof/trace?{query}Yes
getSysQuotasConfig(callback)getSysQuotasConfig{base_path}/{version}/sys/quotas/config?{query}Yes
postSysQuotasConfig(body, callback)postSysQuotasConfig{base_path}/{version}/sys/quotas/config?{query}Yes
getSysQuotasLeaseCount(list, callback)getSysQuotasLeaseCount{base_path}/{version}/sys/quotas/lease-count?{query}Yes
getSysQuotasLeaseCountName(name, callback)getSysQuotasLeaseCountName{base_path}/{version}/sys/quotas/lease-count/{pathv1}?{query}Yes
postSysQuotasLeaseCountName(name, body, callback)postSysQuotasLeaseCountName{base_path}/{version}/sys/quotas/lease-count/{pathv1}?{query}Yes
deleteSysQuotasLeaseCountName(name, callback)deleteSysQuotasLeaseCountName{base_path}/{version}/sys/quotas/lease-count/{pathv1}?{query}Yes
getSysQuotasRateLimit(list, callback)getSysQuotasRateLimit{base_path}/{version}/sys/quotas/rate-limit?{query}Yes
getSysQuotasRateLimitName(name, callback)getSysQuotasRateLimitName{base_path}/{version}/sys/quotas/rate-limit/{pathv1}?{query}Yes
postSysQuotasRateLimitName(name, body, callback)postSysQuotasRateLimitName{base_path}/{version}/sys/quotas/rate-limit/{pathv1}?{query}Yes
deleteSysQuotasRateLimitName(name, callback)deleteSysQuotasRateLimitName{base_path}/{version}/sys/quotas/rate-limit/{pathv1}?{query}Yes
getSysRekeyBackup(callback)Return the backup copy of PGP-encrypted unseal keys.{base_path}/{version}/sys/rekey/backup?{query}Yes
deleteSysRekeyBackup(callback)Delete the backup copy of PGP-encrypted unseal keys.{base_path}/{version}/sys/rekey/backup?{query}Yes
getSysRekeyInit(callback)Reads the configuration and progress of the current rekey attempt.{base_path}/{version}/sys/rekey/init?{query}Yes
postSysRekeyInit(body, callback)Initializes a new rekey attempt.{base_path}/{version}/sys/rekey/init?{query}Yes
deleteSysRekeyInit(callback)Cancels any in-progress rekey.{base_path}/{version}/sys/rekey/init?{query}Yes
getSysRekeyRecoveryKeyBackup(callback)Allows fetching or deleting the backup of the rotated unseal keys.{base_path}/{version}/sys/rekey/recovery-key-backup?{query}Yes
deleteSysRekeyRecoveryKeyBackup(callback)Allows fetching or deleting the backup of the rotated unseal keys.{base_path}/{version}/sys/rekey/recovery-key-backup?{query}Yes
postSysRekeyUpdate(body, callback)Enter a single master key share to progress the rekey of the Vault.{base_path}/{version}/sys/rekey/update?{query}Yes
getSysRekeyVerify(callback)Read the configuration and progress of the current rekey verification attempt.{base_path}/{version}/sys/rekey/verify?{query}Yes
postSysRekeyVerify(body, callback)Enter a single new key share to progress the rekey verification operation.{base_path}/{version}/sys/rekey/verify?{query}Yes
deleteSysRekeyVerify(callback)Cancel any in-progress rekey verification operation.{base_path}/{version}/sys/rekey/verify?{query}Yes
postSysRemount(body, callback)Move the mount point of an already-mounted backend.{base_path}/{version}/sys/remount?{query}Yes
postSysRenew(body, callback)Renews a lease, requesting to extend the lease.{base_path}/{version}/sys/renew?{query}Yes
postSysRenewUrlLeaseId(urlLeaseId, body, callback)Renews a lease, requesting to extend the lease.{base_path}/{version}/sys/renew/{pathv1}?{query}Yes
postSysReplicationDrPrimaryDemote(callback)postSysReplicationDrPrimaryDemote{base_path}/{version}/sys/replication/dr/primary/demote?{query}Yes
postSysReplicationDrPrimaryDisable(callback)postSysReplicationDrPrimaryDisable{base_path}/{version}/sys/replication/dr/primary/disable?{query}Yes
postSysReplicationDrPrimaryEnable(body, callback)postSysReplicationDrPrimaryEnable{base_path}/{version}/sys/replication/dr/primary/enable?{query}Yes
postSysReplicationDrPrimaryRevokeSecondary(body, callback)postSysReplicationDrPrimaryRevokeSecondary{base_path}/{version}/sys/replication/dr/primary/revoke-secondary?{query}Yes
postSysReplicationDrPrimarySecondaryToken(body, callback)postSysReplicationDrPrimarySecondaryToken{base_path}/{version}/sys/replication/dr/primary/secondary-token?{query}Yes
postSysReplicationDrSecondaryDisable(body, callback)postSysReplicationDrSecondaryDisable{base_path}/{version}/sys/replication/dr/secondary/disable?{query}Yes
postSysReplicationDrSecondaryEnable(body, callback)postSysReplicationDrSecondaryEnable{base_path}/{version}/sys/replication/dr/secondary/enable?{query}Yes
postSysReplicationDrSecondaryGeneratePublicKey(callback)postSysReplicationDrSecondaryGeneratePublicKey{base_path}/{version}/sys/replication/dr/secondary/generate-public-key?{query}Yes
getSysReplicationDrSecondaryLicense(callback)The path responds to the following HTTP methods.
GET /
    Returns information on the inst</td>
<td style="padding:15px">{base_path}/{version}/sys/replication/dr/secondary/license?{query}</td>
<td style="padding:15px">Yes</td>
postSysReplicationDrSecondaryLicense(body, callback)The path responds to the following HTTP methods.
GET /
    Returns information on the inst</td>
<td style="padding:15px">{base_path}/{version}/sys/replication/dr/secondary/license?{query}</td>
<td style="padding:15px">Yes</td>
postSysReplicationDrSecondaryOperationTokenDelete(body, callback)postSysReplicationDrSecondaryOperationTokenDelete{base_path}/{version}/sys/replication/dr/secondary/operation-token/delete?{query}Yes
postSysReplicationDrSecondaryPromote(body, callback)postSysReplicationDrSecondaryPromote{base_path}/{version}/sys/replication/dr/secondary/promote?{query}Yes
postSysReplicationDrSecondaryRecover(body, callback)postSysReplicationDrSecondaryRecover{base_path}/{version}/sys/replication/dr/secondary/recover?{query}Yes
postSysReplicationDrSecondaryReindex(body, callback)postSysReplicationDrSecondaryReindex{base_path}/{version}/sys/replication/dr/secondary/reindex?{query}Yes
postSysReplicationDrSecondaryUpdatePrimary(body, callback)postSysReplicationDrSecondaryUpdatePrimary{base_path}/{version}/sys/replication/dr/secondary/update-primary?{query}Yes
getSysReplicationDrStatus(callback)getSysReplicationDrStatus{base_path}/{version}/sys/replication/dr/status?{query}Yes
postSysReplicationPerformancePrimaryDemote(callback)postSysReplicationPerformancePrimaryDemote{base_path}/{version}/sys/replication/performance/primary/demote?{query}Yes
postSysReplicationPerformancePrimaryDisable(callback)postSysReplicationPerformancePrimaryDisable{base_path}/{version}/sys/replication/performance/primary/disable?{query}Yes
getSysReplicationPerformancePrimaryDynamicFilterId(id, callback)getSysReplicationPerformancePrimaryDynamicFilterId{base_path}/{version}/sys/replication/performance/primary/dynamic-filter/{pathv1}?{query}Yes
postSysReplicationPerformancePrimaryEnable(body, callback)postSysReplicationPerformancePrimaryEnable{base_path}/{version}/sys/replication/performance/primary/enable?{query}Yes
getSysReplicationPerformancePrimaryMountFilterId(id, callback)getSysReplicationPerformancePrimaryMountFilterId{base_path}/{version}/sys/replication/performance/primary/mount-filter/{pathv1}?{query}Yes
postSysReplicationPerformancePrimaryMountFilterId(id, body, callback)postSysReplicationPerformancePrimaryMountFilterId{base_path}/{version}/sys/replication/performance/primary/mount-filter/{pathv1}?{query}Yes
deleteSysReplicationPerformancePrimaryMountFilterId(id, callback)deleteSysReplicationPerformancePrimaryMountFilterId{base_path}/{version}/sys/replication/performance/primary/mount-filter/{pathv1}?{query}Yes
getSysReplicationPerformancePrimaryPathsFilterId(id, callback)getSysReplicationPerformancePrimaryPathsFilterId{base_path}/{version}/sys/replication/performance/primary/paths-filter/{pathv1}?{query}Yes
postSysReplicationPerformancePrimaryPathsFilterId(id, body, callback)postSysReplicationPerformancePrimaryPathsFilterId{base_path}/{version}/sys/replication/performance/primary/paths-filter/{pathv1}?{query}Yes
deleteSysReplicationPerformancePrimaryPathsFilterId(id, callback)deleteSysReplicationPerformancePrimaryPathsFilterId{base_path}/{version}/sys/replication/performance/primary/paths-filter/{pathv1}?{query}Yes
postSysReplicationPerformancePrimaryRevokeSecondary(body, callback)postSysReplicationPerformancePrimaryRevokeSecondary{base_path}/{version}/sys/replication/performance/primary/revoke-secondary?{query}Yes
postSysReplicationPerformancePrimarySecondaryToken(body, callback)postSysReplicationPerformancePrimarySecondaryToken{base_path}/{version}/sys/replication/performance/primary/secondary-token?{query}Yes
postSysReplicationPerformanceSecondaryDisable(callback)postSysReplicationPerformanceSecondaryDisable{base_path}/{version}/sys/replication/performance/secondary/disable?{query}Yes
getSysReplicationPerformanceSecondaryDynamicFilterId(id, callback)getSysReplicationPerformanceSecondaryDynamicFilterId{base_path}/{version}/sys/replication/performance/secondary/dynamic-filter/{pathv1}?{query}Yes
postSysReplicationPerformanceSecondaryEnable(body, callback)postSysReplicationPerformanceSecondaryEnable{base_path}/{version}/sys/replication/performance/secondary/enable?{query}Yes
postSysReplicationPerformanceSecondaryGeneratePublicKey(callback)postSysReplicationPerformanceSecondaryGeneratePublicKey{base_path}/{version}/sys/replication/performance/secondary/generate-public-key?{query}Yes
postSysReplicationPerformanceSecondaryPromote(body, callback)postSysReplicationPerformanceSecondaryPromote{base_path}/{version}/sys/replication/performance/secondary/promote?{query}Yes
postSysReplicationPerformanceSecondaryUpdatePrimary(body, callback)postSysReplicationPerformanceSecondaryUpdatePrimary{base_path}/{version}/sys/replication/performance/secondary/update-primary?{query}Yes
getSysReplicationPerformanceStatus(callback)getSysReplicationPerformanceStatus{base_path}/{version}/sys/replication/performance/status?{query}Yes
postSysReplicationPrimaryDemote(callback)postSysReplicationPrimaryDemote{base_path}/{version}/sys/replication/primary/demote?{query}Yes
postSysReplicationPrimaryDisable(callback)postSysReplicationPrimaryDisable{base_path}/{version}/sys/replication/primary/disable?{query}Yes
postSysReplicationPrimaryEnable(body, callback)postSysReplicationPrimaryEnable{base_path}/{version}/sys/replication/primary/enable?{query}Yes
postSysReplicationPrimaryRevokeSecondary(body, callback)postSysReplicationPrimaryRevokeSecondary{base_path}/{version}/sys/replication/primary/revoke-secondary?{query}Yes
postSysReplicationPrimarySecondaryToken(body, callback)postSysReplicationPrimarySecondaryToken{base_path}/{version}/sys/replication/primary/secondary-token?{query}Yes
postSysReplicationRecover(callback)postSysReplicationRecover{base_path}/{version}/sys/replication/recover?{query}Yes
postSysReplicationReindex(body, callback)postSysReplicationReindex{base_path}/{version}/sys/replication/reindex?{query}Yes
postSysReplicationSecondaryDisable(callback)postSysReplicationSecondaryDisable{base_path}/{version}/sys/replication/secondary/disable?{query}Yes
postSysReplicationSecondaryEnable(body, callback)postSysReplicationSecondaryEnable{base_path}/{version}/sys/replication/secondary/enable?{query}Yes
postSysReplicationSecondaryPromote(body, callback)postSysReplicationSecondaryPromote{base_path}/{version}/sys/replication/secondary/promote?{query}Yes
postSysReplicationSecondaryUpdatePrimary(body, callback)postSysReplicationSecondaryUpdatePrimary{base_path}/{version}/sys/replication/secondary/update-primary?{query}Yes
getSysReplicationStatus(callback)getSysReplicationStatus{base_path}/{version}/sys/replication/status?{query}Yes
postSysRevoke(body, callback)Revokes a lease immediately.{base_path}/{version}/sys/revoke?{query}Yes
postSysRevokeForcePrefix(prefix, callback)Revokes all secrets or tokens generated under a given prefix immediately{base_path}/{version}/sys/revoke-force/{pathv1}?{query}Yes
postSysRevokePrefixPrefix(prefix, body, callback)Revokes all secrets (via a lease ID prefix) or tokens (via the tokens' path property) generated und{base_path}/{version}/sys/revoke-prefix/{pathv1}?{query}Yes
postSysRevokeUrlLeaseId(urlLeaseId, body, callback)Revokes a lease immediately.{base_path}/{version}/sys/revoke/{pathv1}?{query}Yes
postSysRotate(callback)Rotates the backend encryption key used to persist data.{base_path}/{version}/sys/rotate?{query}Yes
postSysSeal(callback)Seal the Vault.{base_path}/{version}/sys/seal?{query}Yes
getSysSealStatus(callback)Check the seal status of a Vault.{base_path}/{version}/sys/seal-status?{query}Yes
getSysSealwrapRewrap(callback)Retrieve the state of any ongoing seal rewrap process{base_path}/{version}/sys/sealwrap/rewrap?{query}Yes
postSysSealwrapRewrap(callback)Start a seal rewrap process{base_path}/{version}/sys/sealwrap/rewrap?{query}Yes
postSysStepDown(callback)Cause the node to give up active status.{base_path}/{version}/sys/step-down?{query}Yes
postSysStorageRaftBootstrapAnswer(body, callback)Accepts an answer from the peer to be joined to the fact cluster.{base_path}/{version}/sys/storage/raft/bootstrap/answer?{query}Yes
postSysStorageRaftBootstrapChallenge(body, callback)Creates a challenge for the new peer to be joined to the raft cluster.{base_path}/{version}/sys/storage/raft/bootstrap/challenge?{query}Yes
getSysStorageRaftConfiguration(callback)Returns the configuration of the raft cluster.{base_path}/{version}/sys/storage/raft/configuration?{query}Yes
postSysStorageRaftRemovePeer(body, callback)Remove a peer from the raft cluster.{base_path}/{version}/sys/storage/raft/remove-peer?{query}Yes
getSysStorageRaftSnapshot(callback)Returns a snapshot of the current state of vault.{base_path}/{version}/sys/storage/raft/snapshot?{query}Yes
postSysStorageRaftSnapshot(callback)Installs the provided snapshot, returning the cluster to the state defined in it.{base_path}/{version}/sys/storage/raft/snapshot?{query}Yes
postSysStorageRaftSnapshotForce(callback)Installs the provided snapshot, returning the cluster to the state defined in it. This bypasses che{base_path}/{version}/sys/storage/raft/snapshot-force?{query}Yes
postSysToolsHash(body, callback)Generate a hash sum for input data{base_path}/{version}/sys/tools/hash?{query}Yes
postSysToolsHashUrlalgorithm(urlalgorithm, body, callback)Generate a hash sum for input data{base_path}/{version}/sys/tools/hash/{pathv1}?{query}Yes
postSysToolsRandom(body, callback)Generate random bytes{base_path}/{version}/sys/tools/random?{query}Yes
postSysToolsRandomUrlbytes(urlbytes, body, callback)Generate random bytes{base_path}/{version}/sys/tools/random/{pathv1}?{query}Yes
postSysUnseal(body, callback)Unseal the Vault.{base_path}/{version}/sys/unseal?{query}Yes
getSysWrappingLookup(callback)Look up wrapping properties for the requester's token.{base_path}/{version}/sys/wrapping/lookup?{query}Yes
postSysWrappingLookup(body, callback)Look up wrapping properties for the given token.{base_path}/{version}/sys/wrapping/lookup?{query}Yes
postSysWrappingRewrap(body, callback)Rotates a response-wrapped token.{base_path}/{version}/sys/wrapping/rewrap?{query}Yes
postSysWrappingUnwrap(body, callback)Unwraps a response-wrapped token.{base_path}/{version}/sys/wrapping/unwrap?{query}Yes
postSysWrappingWrap(callback)Response-wraps an arbitrary JSON object.{base_path}/{version}/sys/wrapping/wrap?{query}Yes
getAdConfig(namespace, admount, callback)getAdConfig{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
createAdConfig(namespace, admount, body, callback)createAdConfig{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
deleteAdConfig(namespace, admount, callback)deleteAdEngineConfig{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
getAdCredsName(namespace, admount, name, callback)getAdCredsName{base_path}/{version}/{pathv1}/{pathv2}/creds/{pathv3}?{query}Yes
getAdLibrary(namespace, admount, list, callback)getAdLibrary{base_path}/{version}/{pathv1}/{pathv2}/library?{query}Yes
createAdLibraryManageNameCheckIn(namespace, admount, name, body, callback)createAdLibraryManageNameCheckIn{base_path}/{version}/{pathv1}/{pathv2}/library/manage/{pathv3}/check-in?{query}Yes
getAdLibraryName(namespace, admount, name, callback)getAdLibraryName{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}?{query}Yes
updateAdLibraryName(namespace, admount, name, body, callback)updateAdLibraryName{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}?{query}Yes
deleteAdLibraryName(namespace, admount, name, callback)deleteAdLibraryName{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}?{query}Yes
createAdLibraryNameCheckIn(namespace, admount, name, body, callback)createAdLibraryNameCheckIn{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}/check-in?{query}Yes
createAdLibraryNameCheckOut(namespace, admount, name, body, callback)createAdLibraryNameCheckOut{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}/check-out?{query}Yes
getAdLibraryNameStatus(namespace, admount, name, callback)getAdLibraryNameStatus{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}/status?{query}Yes
getAdRotateRoot(namespace, admount, callback)getAdRotateRoot{base_path}/{version}/{pathv1}/{pathv2}/rotate-root?{query}Yes
createAdRotateRoot(namespace, admount, callback)createAdRotateRoot{base_path}/{version}/{pathv1}/{pathv2}/rotate-root?{query}Yes
getAlicloudRole(namespace, alicloudmount, list, callback)getAlicloudRole{base_path}/{version}/{pathv1}/{pathv2}/role?{query}Yes
getAlicloudRoleName(namespace, alicloudmount, name, callback)getAlicloudRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
postAlicloudRoleName(namespace, alicloudmount, name, body, callback)postAlicloudRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
deleteAlicloudRoleName(namespace, alicloudmount, name, callback)deleteAlicloudRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
getAwsConfigLease(namespace, awsmount, callback)getAwsConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
postAwsConfigLease(namespace, awsmount, body, callback)postAwsConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
getAwsConfigRoot(namespace, awsmount, callback)getAwsConfigRoot{base_path}/{version}/{pathv1}/{pathv2}/config/root?{query}Yes
postAwsConfigRoot(namespace, awsmount, body, callback)postAwsConfigRoot{base_path}/{version}/{pathv1}/{pathv2}/config/root?{query}Yes
postAwsConfigRotateRoot(namespace, awsmount, callback)postAwsConfigRotateRoot{base_path}/{version}/{pathv1}/{pathv2}/config/rotate-root?{query}Yes
getAwsCreds(namespace, awsmount, callback)getAwsCreds{base_path}/{version}/{pathv1}/{pathv2}/creds?{query}Yes
postAwsCreds(namespace, awsmount, body, callback)postAwsCreds{base_path}/{version}/{pathv1}/{pathv2}/creds?{query}Yes
getAwsStsName(namespace, awsmount, name, callback)getAwsStsName{base_path}/{version}/{pathv1}/{pathv2}/sts/{pathv3}?{query}Yes
postAwsStsName(namespace, awsmount, name, body, callback)postAwsStsName{base_path}/{version}/{pathv1}/{pathv2}/sts/{pathv3}?{query}Yes
getAzureCredsRole(namespace, azuremount, role, callback)getAzureCredsRole{base_path}/{version}/{pathv1}/{pathv2}/creds/{pathv3}?{query}Yes
getConsulConfigAccess(namespace, consulmount, callback)getConsulConfigAccess{base_path}/{version}/{pathv1}/{pathv2}/config/access?{query}Yes
postConsulConfigAccess(namespace, consulmount, body, callback)postConsulConfigAccess{base_path}/{version}/{pathv1}/{pathv2}/config/access?{query}Yes
getConsulCredsRole(namespace, consulmount, role, callback)getConsulCredsRole{base_path}/{version}/{pathv1}/{pathv2}/creds/{pathv3}?{query}Yes
getCubbyholePath(namespace, cubbyholemount, enginepath, list, callback)getCubbyholePath{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
postCubbyholePath(namespace, cubbyholemount, enginepath, callback)postCubbyholePath{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
deleteCubbyholePath(namespace, cubbyholemount, enginepath, callback)deleteCubbyholePath{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
getDatabaseConfigName(namespace, databasemount, name, callback)getDatabaseConfigName{base_path}/{version}/{pathv1}/{pathv2}/config/{pathv3}?{query}Yes
postDatabaseConfigName(namespace, databasemount, name, body, callback)postDatabaseConfigName{base_path}/{version}/{pathv1}/{pathv2}/config/{pathv3}?{query}Yes
deleteDatabaseConfigName(namespace, databasemount, name, callback)deleteDatabaseConfigName{base_path}/{version}/{pathv1}/{pathv2}/config/{pathv3}?{query}Yes
postDatabaseResetName(namespace, databasemount, name, callback)postDatabaseResetName{base_path}/{version}/{pathv1}/{pathv2}/reset/{pathv3}?{query}Yes
postDatabaseRotateRoleName(namespace, databasemount, name, callback)postDatabaseRotateRoleName{base_path}/{version}/{pathv1}/{pathv2}/rotate-role/{pathv3}?{query}Yes
postDatabaseRotateRootName(namespace, databasemount, name, callback)postDatabaseRotateRootName{base_path}/{version}/{pathv1}/{pathv2}/rotate-root/{pathv3}?{query}Yes
getDatabaseStaticCredsName(namespace, databasemount, name, callback)getDatabaseStaticCredsName{base_path}/{version}/{pathv1}/{pathv2}/static-creds/{pathv3}?{query}Yes
getDatabaseStaticRoles(namespace, databasemount, list, callback)getDatabaseStaticRoles{base_path}/{version}/{pathv1}/{pathv2}/static-roles?{query}Yes
getDatabaseStaticRolesName(namespace, databasemount, name, callback)getDatabaseStaticRolesName{base_path}/{version}/{pathv1}/{pathv2}/static-roles/{pathv3}?{query}Yes
postDatabaseStaticRolesName(namespace, databasemount, name, body, callback)postDatabaseStaticRolesName{base_path}/{version}/{pathv1}/{pathv2}/static-roles/{pathv3}?{query}Yes
deleteDatabaseStaticRolesName(namespace, databasemount, name, callback)deleteDatabaseStaticRolesName{base_path}/{version}/{pathv1}/{pathv2}/static-roles/{pathv3}?{query}Yes
postGcpConfigRotateRoot(namespace, gcpmount, callback)postGcpConfigRotateRoot{base_path}/{version}/{pathv1}/{pathv2}/config/rotate-root?{query}Yes
getGcpKeyRoleset(namespace, gcpmount, roleset, callback)getGcpKeyRoleset{base_path}/{version}/{pathv1}/{pathv2}/key/{pathv3}?{query}Yes
postGcpKeyRoleset(namespace, gcpmount, roleset, body, callback)postGcpKeyRoleset{base_path}/{version}/{pathv1}/{pathv2}/key/{pathv3}?{query}Yes
getGcpRolesetName(namespace, gcpmount, name, callback)getGcpRolesetName{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}?{query}Yes
postGcpRolesetName(namespace, gcpmount, name, body, callback)postGcpRolesetName{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}?{query}Yes
deleteGcpRolesetName(namespace, gcpmount, name, callback)deleteGcpRolesetName{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}?{query}Yes
postGcpRolesetNameRotate(namespace, gcpmount, name, callback)postGcpRolesetNameRotate{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}/rotate?{query}Yes
postGcpRolesetNameRotateKey(namespace, gcpmount, name, callback)postGcpRolesetNameRotateKey{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}/rotate-key?{query}Yes
getGcpRolesets(namespace, gcpmount, list, callback)getGcpRolesets{base_path}/{version}/{pathv1}/{pathv2}/rolesets?{query}Yes
getGcpTokenRoleset(namespace, gcpmount, roleset, callback)getGcpTokenRoleset{base_path}/{version}/{pathv1}/{pathv2}/token/{pathv3}?{query}Yes
postGcpTokenRoleset(namespace, gcpmount, roleset, callback)postGcpTokenRoleset{base_path}/{version}/{pathv1}/{pathv2}/token/{pathv3}?{query}Yes
postGcpkmsDecryptKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsDecryptKey{base_path}/{version}/{pathv1}/{pathv2}/decrypt/{pathv3}?{query}Yes
postGcpkmsEncryptKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsEncryptKey{base_path}/{version}/{pathv1}/{pathv2}/encrypt/{pathv3}?{query}Yes
getGcpkmsKeys(namespace, gcpkmsmount, list, callback)getGcpkmsKeys{base_path}/{version}/{pathv1}/{pathv2}/keys?{query}Yes
getGcpkmsKeysConfigKey(namespace, gcpkmsmount, key, callback)getGcpkmsKeysConfigKey{base_path}/{version}/{pathv1}/{pathv2}/keys/config/{pathv3}?{query}Yes
postGcpkmsKeysConfigKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsKeysConfigKey{base_path}/{version}/{pathv1}/{pathv2}/keys/config/{pathv3}?{query}Yes
postGcpkmsKeysDeregisterKey(namespace, gcpkmsmount, key, callback)postGcpkmsKeysDeregisterKey{base_path}/{version}/{pathv1}/{pathv2}/keys/deregister/{pathv3}?{query}Yes
deleteGcpkmsKeysDeregisterKey(namespace, gcpkmsmount, key, callback)deleteGcpkmsKeysDeregisterKey{base_path}/{version}/{pathv1}/{pathv2}/keys/deregister/{pathv3}?{query}Yes
postGcpkmsKeysRegisterKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsKeysRegisterKey{base_path}/{version}/{pathv1}/{pathv2}/keys/register/{pathv3}?{query}Yes
postGcpkmsKeysRotateKey(namespace, gcpkmsmount, key, callback)postGcpkmsKeysRotateKey{base_path}/{version}/{pathv1}/{pathv2}/keys/rotate/{pathv3}?{query}Yes
postGcpkmsKeysTrimKey(namespace, gcpkmsmount, key, callback)postGcpkmsKeysTrimKey{base_path}/{version}/{pathv1}/{pathv2}/keys/trim/{pathv3}?{query}Yes
deleteGcpkmsKeysTrimKey(namespace, gcpkmsmount, key, callback)deleteGcpkmsKeysTrimKey{base_path}/{version}/{pathv1}/{pathv2}/keys/trim/{pathv3}?{query}Yes
getGcpkmsKeysKey(namespace, gcpkmsmount, key, callback)getGcpkmsKeysKey{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postGcpkmsKeysKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsKeysKey{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
deleteGcpkmsKeysKey(namespace, gcpkmsmount, key, callback)deleteGcpkmsKeysKey{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
getGcpkmsPubkeyKey(namespace, gcpkmsmount, key, callback)getGcpkmsPubkeyKey{base_path}/{version}/{pathv1}/{pathv2}/pubkey/{pathv3}?{query}Yes
postGcpkmsReencryptKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsReencryptKey{base_path}/{version}/{pathv1}/{pathv2}/reencrypt/{pathv3}?{query}Yes
postGcpkmsSignKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsSignKey{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postGcpkmsVerifyKey(namespace, gcpkmsmount, key, body, callback)postGcpkmsVerifyKey{base_path}/{version}/{pathv1}/{pathv2}/verify/{pathv3}?{query}Yes
getKvDataPath(namespace, kvmount, enginepath, callback)getKvDataPath{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
postKvDataPath(namespace, kvmount, enginepath, body, callback)postKvDataPath{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
deleteKvDataPath(namespace, kvmount, enginepath, callback)deleteKvDataPath{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
postKvDeletePath(namespace, kvmount, enginepath, body, callback)postKvDeletePath{base_path}/{version}/{pathv1}/{pathv2}/delete/{pathv3}?{query}Yes
postKvDestroyPath(namespace, kvmount, enginepath, body, callback)postKvDestroyPath{base_path}/{version}/{pathv1}/{pathv2}/destroy/{pathv3}?{query}Yes
getKvMetadataPath(namespace, kvmount, enginepath, list, callback)getKvMetadataPath{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
postKvMetadataPath(namespace, kvmount, enginepath, body, callback)postKvMetadataPath{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
deleteKvMetadataPath(namespace, kvmount, enginepath, callback)deleteKvMetadataPath{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
postKvUndeletePath(namespace, kvmount, enginepath, body, callback)postKvUndeletePath{base_path}/{version}/{pathv1}/{pathv2}/undelete/{pathv3}?{query}Yes
getNomadConfigAccess(namespace, nomadmount, callback)getNomadConfigAccess{base_path}/{version}/{pathv1}/{pathv2}/config/access?{query}Yes
postNomadConfigAccess(namespace, nomadmount, body, callback)postNomadConfigAccess{base_path}/{version}/{pathv1}/{pathv2}/config/access?{query}Yes
deleteNomadConfigAccess(namespace, nomadmount, callback)deleteNomadConfigAccess{base_path}/{version}/{pathv1}/{pathv2}/config/access?{query}Yes
getNomadConfigLease(namespace, nomadmount, callback)getNomadConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
postNomadConfigLease(namespace, nomadmount, body, callback)postNomadConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
deleteNomadConfigLease(namespace, nomadmount, callback)deleteNomadConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
getNomadRole(namespace, nomadmount, list, callback)getNomadRole{base_path}/{version}/{pathv1}/{pathv2}/role?{query}Yes
getNomadRoleName(namespace, nomadmount, name, callback)getNomadRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
postNomadRoleName(namespace, nomadmount, name, body, callback)postNomadRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
deleteNomadRoleName(namespace, nomadmount, name, callback)deleteNomadRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
getPkiCa(namespace, pkimount, callback)getPkiCa{base_path}/{version}/{pathv1}/{pathv2}/ca?{query}Yes
getPkiCaPem(namespace, pkimount, callback)getPkiCaPem{base_path}/{version}/{pathv1}/{pathv2}/ca/pem?{query}Yes
getPkiCaChain(namespace, pkimount, callback)getPkiCa_chain{base_path}/{version}/{pathv1}/{pathv2}/ca_chain?{query}Yes
getPkiCertCaChain(namespace, pkimount, callback)getPkiCertCa_chain{base_path}/{version}/{pathv1}/{pathv2}/cert/ca_chain?{query}Yes
getPkiCertCrl(namespace, pkimount, callback)getPkiCertCrl{base_path}/{version}/{pathv1}/{pathv2}/cert/crl?{query}Yes
getPkiCertSerial(namespace, pkimount, serial, callback)getPkiCertSerial{base_path}/{version}/{pathv1}/{pathv2}/cert/{pathv3}?{query}Yes
getPkiCerts(namespace, pkimount, list, callback)getPkiCerts{base_path}/{version}/{pathv1}/{pathv2}/certs?{query}Yes
postPkiConfigCa(namespace, pkimount, body, callback)postPkiConfigCa{base_path}/{version}/{pathv1}/{pathv2}/config/ca?{query}Yes
getPkiConfigCrl(namespace, pkimount, callback)getPkiConfigCrl{base_path}/{version}/{pathv1}/{pathv2}/config/crl?{query}Yes
postPkiConfigCrl(namespace, pkimount, body, callback)postPkiConfigCrl{base_path}/{version}/{pathv1}/{pathv2}/config/crl?{query}Yes
getPkiConfigUrls(namespace, pkimount, callback)getPkiConfigUrls{base_path}/{version}/{pathv1}/{pathv2}/config/urls?{query}Yes
postPkiConfigUrls(namespace, pkimount, body, callback)postPkiConfigUrls{base_path}/{version}/{pathv1}/{pathv2}/config/urls?{query}Yes
getPkiCrl(namespace, pkimount, callback)getPkiCrl{base_path}/{version}/{pathv1}/{pathv2}/crl?{query}Yes
getPkiCrlPem(namespace, pkimount, callback)getPkiCrlPem{base_path}/{version}/{pathv1}/{pathv2}/crl/pem?{query}Yes
getPkiCrlRotate(namespace, pkimount, callback)getPkiCrlRotate{base_path}/{version}/{pathv1}/{pathv2}/crl/rotate?{query}Yes
postPkiIntermediateGenerateExported(namespace, pkimount, exported, body, callback)postPkiIntermediateGenerateExported{base_path}/{version}/{pathv1}/{pathv2}/intermediate/generate/{pathv3}?{query}Yes
postPkiIntermediateSetSigned(namespace, pkimount, body, callback)postPkiIntermediateSetSigned{base_path}/{version}/{pathv1}/{pathv2}/intermediate/set-signed?{query}Yes
postPkiIssueRole(namespace, pkimount, role, body, callback)postPkiIssueRole{base_path}/{version}/{pathv1}/{pathv2}/issue/{pathv3}?{query}Yes
postPkiRevoke(namespace, pkimount, body, callback)postPkiRevoke{base_path}/{version}/{pathv1}/{pathv2}/revoke?{query}Yes
deletePkiRoot(namespace, pkimount, callback)deletePkiRoot{base_path}/{version}/{pathv1}/{pathv2}/root?{query}Yes
postPkiRootGenerateExported(namespace, pkimount, exported, body, callback)postPkiRootGenerateExported{base_path}/{version}/{pathv1}/{pathv2}/root/generate/{pathv3}?{query}Yes
postPkiRootSignIntermediate(namespace, pkimount, body, callback)postPkiRootSignIntermediate{base_path}/{version}/{pathv1}/{pathv2}/root/sign-intermediate?{query}Yes
postPkiRootSignSelfIssued(namespace, pkimount, body, callback)postPkiRootSignSelfIssued{base_path}/{version}/{pathv1}/{pathv2}/root/sign-self-issued?{query}Yes
postPkiSignVerbatim(namespace, pkimount, body, callback)postPkiSignVerbatim{base_path}/{version}/{pathv1}/{pathv2}/sign-verbatim?{query}Yes
postPkiSignVerbatimRole(namespace, pkimount, role, body, callback)postPkiSignVerbatimRole{base_path}/{version}/{pathv1}/{pathv2}/sign-verbatim/{pathv3}?{query}Yes
postPkiSignRole(namespace, pkimount, role, body, callback)postPkiSignRole{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postPkiTidy(namespace, pkimount, body, callback)postPkiTidy{base_path}/{version}/{pathv1}/{pathv2}/tidy?{query}Yes
postRabbitmqConfigConnection(namespace, rabbitmqmount, body, callback)postRabbitmqConfigConnection{base_path}/{version}/{pathv1}/{pathv2}/config/connection?{query}Yes
getRabbitmqConfigLease(namespace, rabbitmqmount, callback)getRabbitmqConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
postRabbitmqConfigLease(namespace, rabbitmqmount, body, callback)postRabbitmqConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
getSecretEngineConfig(namespace, secretmount, callback)getSecretEngineConfig{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
postSecretEngineConfig(namespace, secretmount, body, callback)postSecretEngineConfig{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
deleteSecretEngineConfig(namespace, secretmount, callback)deleteSecretEngineConfig{base_path}/{version}/{pathv1}/{pathv2}/config?{query}Yes
getSecretEngineCredsName(namespace, secretmount, name, callback)getSecretEngineCredsName{base_path}/{version}/{pathv1}/{pathv2}/creds/{pathv3}?{query}Yes
getSecretEngineLibrary(namespace, secretmount, list, callback)getSecretEngineLibrary{base_path}/{version}/{pathv1}/{pathv2}/library?{query}Yes
postSecretEngineLibraryManageNameCheckIn(namespace, secretmount, name, body, callback)postSecretEngineLibraryManageNameCheckIn{base_path}/{version}/{pathv1}/{pathv2}/library/manage/{pathv3}/check-in?{query}Yes
getSecretEngineLibraryName(namespace, secretmount, name, callback)getSecretEngineLibraryName{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}?{query}Yes
updateSecretEngineLibraryName(namespace, secretmount, name, body, callback)updateSecretEngineLibraryName{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}?{query}Yes
deleteSecretEngineLibraryName(namespace, secretmount, name, callback)deleteSecretEngineLibraryName{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}?{query}Yes
postSecretEngineLibraryNameCheckIn(namespace, secretmount, name, body, callback)postSecretEngineLibraryNameCheckIn{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}/check-in?{query}Yes
postSecretEngineLibraryNameCheckOut(namespace, secretmount, name, body, callback)postSecretEngineLibraryNameCheckOut{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}/check-out?{query}Yes
getSecretEngineLibraryNameStatus(namespace, secretmount, name, callback)getSecretEngineLibraryNameStatus{base_path}/{version}/{pathv1}/{pathv2}/library/{pathv3}/status?{query}Yes
getSecretEngineRotateRoot(namespace, secretmount, callback)getSecretEngineRotateRoot{base_path}/{version}/{pathv1}/{pathv2}/rotate-root?{query}Yes
postSecretEngineRotateRoot(namespace, secretmount, callback)postSecretEngineRotateRoot{base_path}/{version}/{pathv1}/{pathv2}/rotate-root?{query}Yes
getSecretEngineRole(namespace, secretmount, list, callback)getSecretEngineRole{base_path}/{version}/{pathv1}/{pathv2}/role?{query}Yes
getSecretEngineRoleName(namespace, secretmount, name, callback)getSecretEngineRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
postSecretEngineRoleName(namespace, secretmount, name, body, callback)postSecretEngineRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
deleteSecretEngineRoleName(namespace, secretmount, name, callback)deleteSecretEngineRoleName{base_path}/{version}/{pathv1}/{pathv2}/role/{pathv3}?{query}Yes
getSecretEngineConfigLease(namespace, secretmount, callback)getSecretEngineConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
postSecretEngineConfigLease(namespace, secretmount, body, callback)postSecretEngineConfigLease{base_path}/{version}/{pathv1}/{pathv2}/config/lease?{query}Yes
getSecretEngineConfigRoot(namespace, secretmount, callback)getSecretEngineConfigRoot{base_path}/{version}/{pathv1}/{pathv2}/config/root?{query}Yes
postSecretEngineConfigRoot(namespace, secretmount, body, callback)postSecretEngineConfigRoot{base_path}/{version}/{pathv1}/{pathv2}/config/root?{query}Yes
postSecretEngineConfigRotateRoot(namespace, secretmount, callback)postSecretEngineConfigRotateRoot{base_path}/{version}/{pathv1}/{pathv2}/config/rotate-root?{query}Yes
getSecretEngineCreds(namespace, secretmount, callback)getSecretEngineCreds{base_path}/{version}/{pathv1}/{pathv2}/creds?{query}Yes
postSecretEngineCreds(namespace, secretmount, body, callback)postSecretEngineCreds{base_path}/{version}/{pathv1}/{pathv2}/creds?{query}Yes
getSecretEngineStsName(namespace, secretmount, name, callback)getSecretEngineStsName{base_path}/{version}/{pathv1}/{pathv2}/sts/{pathv3}?{query}Yes
postSecretEngineStsName(namespace, secretmount, name, body, callback)postSecretEngineStsName{base_path}/{version}/{pathv1}/{pathv2}/sts/{pathv3}?{query}Yes
getSecretEngineCredsRole(namespace, secretmount, role, callback)getSecretEngineCredsRole{base_path}/{version}/{pathv1}/{pathv2}/creds/{pathv3}?{query}Yes
getSecretEngineConfigAccess(namespace, secretmount, callback)getSecretEngineConfigAccess{base_path}/{version}/{pathv1}/{pathv2}/config/access?{query}Yes
postSecretEngineConfigAccess(namespace, secretmount, body, callback)postSecretEngineConfigAccess{base_path}/{version}/{pathv1}/{pathv2}/config/access?{query}Yes
getSecretEnginePath(namespace, secretmount, secretpath, list, callback)getSecretEnginePath{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
postSecretEnginePath(namespace, secretmount, secretpath, callback)postSecretEnginePath{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
deleteSecretEnginePath(namespace, secretmount, secretpath, callback)deleteSecretEnginePath{base_path}/{version}/{pathv1}/{pathv2}/{pathv3}?{query}Yes
getSecretEngineConfigName(namespace, secretmount, name, callback)getSecretEngineConfigName{base_path}/{version}/{pathv1}/{pathv2}/config/{pathv3}?{query}Yes
postSecretEngineConfigName(namespace, secretmount, name, body, callback)postSecretEngineConfigName{base_path}/{version}/{pathv1}/{pathv2}/config/{pathv3}?{query}Yes
deleteSecretEngineConfigName(namespace, secretmount, name, callback)deleteSecretEngineConfigName{base_path}/{version}/{pathv1}/{pathv2}/config/{pathv3}?{query}Yes
postSecretEngineResetName(namespace, secretmount, name, callback)postSecretEngineResetName{base_path}/{version}/{pathv1}/{pathv2}/reset/{pathv3}?{query}Yes
postSecretEngineRotateRoleName(namespace, secretmount, name, callback)postSecretEngineRotateRoleName{base_path}/{version}/{pathv1}/{pathv2}/rotate-role/{pathv3}?{query}Yes
postSecretEngineRotateRootName(namespace, secretmount, name, callback)postSecretEngineRotateRootName{base_path}/{version}/{pathv1}/{pathv2}/rotate-root/{pathv3}?{query}Yes
getSecretEngineStaticCredsName(namespace, secretmount, name, callback)getSecretEngineStaticCredsName{base_path}/{version}/{pathv1}/{pathv2}/static-creds/{pathv3}?{query}Yes
getSecretEngineStaticRoles(namespace, secretmount, list, callback)getSecretEngineStaticRoles{base_path}/{version}/{pathv1}/{pathv2}/static-roles?{query}Yes
getSecretEngineStaticRolesName(namespace, secretmount, name, callback)getSecretEngineStaticRolesName{base_path}/{version}/{pathv1}/{pathv2}/static-roles/{pathv3}?{query}Yes
postSecretEngineStaticRolesName(namespace, secretmount, name, body, callback)postSecretEngineStaticRolesName{base_path}/{version}/{pathv1}/{pathv2}/static-roles/{pathv3}?{query}Yes
deleteSecretEngineStaticRolesName(namespace, secretmount, name, callback)deleteSecretEngineStaticRolesName{base_path}/{version}/{pathv1}/{pathv2}/static-roles/{pathv3}?{query}Yes
getSecretEngineKeyRoleset(namespace, secretmount, roleset, callback)getSecretEngineKeyRoleset{base_path}/{version}/{pathv1}/{pathv2}/key/{pathv3}?{query}Yes
postSecretEngineKeyRoleset(namespace, secretmount, roleset, body, callback)postSecretEngineKeyRoleset{base_path}/{version}/{pathv1}/{pathv2}/key/{pathv3}?{query}Yes
getSecretEngineRolesetName(namespace, secretmount, name, callback)getSecretEngineRolesetName{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}?{query}Yes
postSecretEngineRolesetName(namespace, secretmount, name, body, callback)postSecretEngineRolesetName{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}?{query}Yes
deleteSecretEngineRolesetName(namespace, secretmount, name, callback)deleteSecretEngineRolesetName{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}?{query}Yes
postSecretEngineRolesetNameRotate(namespace, secretmount, name, callback)postSecretEngineRolesetNameRotate{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}/rotate?{query}Yes
postSecretEngineRolesetNameRotateKey(namespace, secretmount, name, callback)postSecretEngineRolesetNameRotateKey{base_path}/{version}/{pathv1}/{pathv2}/roleset/{pathv3}/rotate-key?{query}Yes
getSecretEngineRolesets(namespace, secretmount, list, callback)getSecretEngineRolesets{base_path}/{version}/{pathv1}/{pathv2}/rolesets?{query}Yes
getSecretEngineTokenRoleset(namespace, secretmount, roleset, callback)getSecretEngineTokenRoleset{base_path}/{version}/{pathv1}/{pathv2}/token/{pathv3}?{query}Yes
postSecretEngineTokenRoleset(namespace, secretmount, roleset, callback)postSecretEngineTokenRoleset{base_path}/{version}/{pathv1}/{pathv2}/token/{pathv3}?{query}Yes
postSecretEngineDecryptKey(namespace, secretmount, key, body, callback)postSecretEngineDecryptKey{base_path}/{version}/{pathv1}/{pathv2}/decrypt/{pathv3}?{query}Yes
postSecretEngineEncryptKey(namespace, secretmount, key, body, callback)postSecretEngineEncryptKey{base_path}/{version}/{pathv1}/{pathv2}/encrypt/{pathv3}?{query}Yes
getSecretEngineKeys(namespace, secretmount, list, callback)getSecretEngineKeys{base_path}/{version}/{pathv1}/{pathv2}/keys?{query}Yes
getSecretEngineKeysConfigKey(namespace, secretmount, key, callback)getSecretEngineKeysConfigKey{base_path}/{version}/{pathv1}/{pathv2}/keys/config/{pathv3}?{query}Yes
postSecretEngineKeysConfigKey(namespace, secretmount, key, body, callback)postSecretEngineKeysConfigKey{base_path}/{version}/{pathv1}/{pathv2}/keys/config/{pathv3}?{query}Yes
postSecretEngineKeysDeregisterKey(namespace, secretmount, key, callback)postSecretEngineKeysDeregisterKey{base_path}/{version}/{pathv1}/{pathv2}/keys/deregister/{pathv3}?{query}Yes
deleteSecretEngineKeysDeregisterKey(namespace, secretmount, key, callback)deleteSecretEngineKeysDeregisterKey{base_path}/{version}/{pathv1}/{pathv2}/keys/deregister/{pathv3}?{query}Yes
postSecretEngineKeysRegisterKey(namespace, secretmount, key, body, callback)postSecretEngineKeysRegisterKey{base_path}/{version}/{pathv1}/{pathv2}/keys/register/{pathv3}?{query}Yes
postSecretEngineKeysRotateKey(namespace, secretmount, key, callback)postSecretEngineKeysRotateKey{base_path}/{version}/{pathv1}/{pathv2}/keys/rotate/{pathv3}?{query}Yes
postSecretEngineKeysTrimKey(namespace, secretmount, key, callback)postSecretEngineKeysTrimKey{base_path}/{version}/{pathv1}/{pathv2}/keys/trim/{pathv3}?{query}Yes
deleteSecretEngineKeysTrimKey(namespace, secretmount, key, callback)deleteSecretEngineKeysTrimKey{base_path}/{version}/{pathv1}/{pathv2}/keys/trim/{pathv3}?{query}Yes
getSecretEngineKeysKey(namespace, secretmount, key, callback)getSecretEngineKeysKey{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postSecretEngineKeysKey(namespace, secretmount, key, body, callback)postSecretEngineKeysKey{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
deleteSecretEngineKeysKey(namespace, secretmount, key, callback)deleteSecretEngineKeysKey{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
getSecretEnginePubkeyKey(namespace, secretmount, key, callback)getSecretEnginePubkeyKey{base_path}/{version}/{pathv1}/{pathv2}/pubkey/{pathv3}?{query}Yes
postSecretEngineReencryptKey(namespace, secretmount, key, body, callback)postSecretEngineReencryptKey{base_path}/{version}/{pathv1}/{pathv2}/reencrypt/{pathv3}?{query}Yes
postSecretEngineSignKey(namespace, secretmount, key, body, callback)postSecretEngineSignKey{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postSecretEngineVerifyKey(namespace, secretmount, key, body, callback)postSecretEngineVerifyKey{base_path}/{version}/{pathv1}/{pathv2}/verify/{pathv3}?{query}Yes
getSecretEngineDataPath(namespace, secretmount, enginepath, callback)getSecretEngineDataPath{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
postSecretEngineDataPath(namespace, secretmount, enginepath, body, callback)postSecretEngineDataPath{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
deleteSecretEngineDataPath(namespace, secretmount, enginepath, callback)deleteSecretEngineDataPath{base_path}/{version}/{pathv1}/{pathv2}/data/{pathv3}?{query}Yes
postSecretEngineDeletePath(namespace, secretmount, enginepath, body, callback)postSecretEngineDeletePath{base_path}/{version}/{pathv1}/{pathv2}/delete/{pathv3}?{query}Yes
postSecretEngineDestroyPath(namespace, secretmount, enginepath, body, callback)postSecretEngineDestroyPath{base_path}/{version}/{pathv1}/{pathv2}/destroy/{pathv3}?{query}Yes
getSecretEngineMetadataPath(namespace, secretmount, enginepath, list, callback)getSecretEngineMetadataPath{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
postSecretEngineMetadataPath(namespace, secretmount, enginepath, body, callback)postSecretEngineMetadataPath{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
deleteSecretEngineMetadataPath(namespace, secretmount, enginepath, callback)deleteSecretEngineMetadataPath{base_path}/{version}/{pathv1}/{pathv2}/metadata/{pathv3}?{query}Yes
postSecretEngineUndeletePath(namespace, secretmount, enginepath, body, callback)postSecretEngineUndeletePath{base_path}/{version}/{pathv1}/{pathv2}/undelete/{pathv3}?{query}Yes
postSecretEngineConfigConnection(namespace, secretmount, body, callback)postSecretEngineConfigConnection{base_path}/{version}/{pathv1}/{pathv2}/config/connection?{query}Yes
getSecretEngineConfigZeroaddress(namespace, secretmount, callback)getSecretEngineConfigZeroaddress{base_path}/{version}/{pathv1}/{pathv2}/config/zeroaddress?{query}Yes
postSecretEngineConfigZeroaddress(namespace, secretmount, body, callback)postSecretEngineConfigZeroaddress{base_path}/{version}/{pathv1}/{pathv2}/config/zeroaddress?{query}Yes
deleteSecretEngineConfigZeroaddress(namespace, secretmount, callback)deleteSecretEngineConfigZeroaddress{base_path}/{version}/{pathv1}/{pathv2}/config/zeroaddress?{query}Yes
postSecretEngineKeysKeyName(namespace, secretmount, keyName, body, callback)postSecretEngineKeysKey_name{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
deleteSecretEngineKeysKeyName(namespace, secretmount, keyName, callback)deleteSecretEngineKeysKey_name{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postSecretEngineLookup(namespace, secretmount, body, callback)postSecretEngineLookup{base_path}/{version}/{pathv1}/{pathv2}/lookup?{query}Yes
getSecretEnginePublicKey(namespace, secretmount, callback)getSecretEnginePublic_key{base_path}/{version}/{pathv1}/{pathv2}/public_key?{query}Yes
postSecretEngineVerify(namespace, secretmount, body, callback)postSecretEngineVerify{base_path}/{version}/{pathv1}/{pathv2}/verify?{query}Yes
getCertCa(namespace, secretmount, callback)getCertCa{base_path}/{version}/{pathv1}/{pathv2}/ca?{query}Yes
getCertCaPem(namespace, secretmount, callback)getCertCaPem{base_path}/{version}/{pathv1}/{pathv2}/ca/pem?{query}Yes
getCertCaChain(namespace, secretmount, callback)getCertCa_chain{base_path}/{version}/{pathv1}/{pathv2}/ca_chain?{query}Yes
getCertCertCaChain(namespace, secretmount, callback)getCertCertCa_chain{base_path}/{version}/{pathv1}/{pathv2}/cert/ca_chain?{query}Yes
getCertCertCrl(namespace, secretmount, callback)getCertCertCrl{base_path}/{version}/{pathv1}/{pathv2}/cert/crl?{query}Yes
getCertSerial(namespace, secretmount, serial, callback)getCertSerial{base_path}/{version}/{pathv1}/{pathv2}/cert/{pathv3}?{query}Yes
getCertCerts(namespace, secretmount, list, callback)getCertCerts{base_path}/{version}/{pathv1}/{pathv2}/certs?{query}Yes
postCertConfigCa(namespace, secretmount, body, callback)postCertConfigCa{base_path}/{version}/{pathv1}/{pathv2}/config/ca?{query}Yes
getCertConfigCrl(namespace, secretmount, callback)getCertConfigCrl{base_path}/{version}/{pathv1}/{pathv2}/config/crl?{query}Yes
postCertConfigCrl(namespace, secretmount, body, callback)postCertConfigCrl{base_path}/{version}/{pathv1}/{pathv2}/config/crl?{query}Yes
getCertConfigUrls(namespace, secretmount, callback)getCertConfigUrls{base_path}/{version}/{pathv1}/{pathv2}/config/urls?{query}Yes
postCertConfigUrls(namespace, secretmount, body, callback)postCertConfigUrls{base_path}/{version}/{pathv1}/{pathv2}/config/urls?{query}Yes
getCertCrl(namespace, secretmount, callback)getCertCrl{base_path}/{version}/{pathv1}/{pathv2}/crl?{query}Yes
getCertCrlPem(namespace, secretmount, callback)getCertCrlPem{base_path}/{version}/{pathv1}/{pathv2}/crl/pem?{query}Yes
getCertCrlRotate(namespace, secretmount, callback)getCertCrlRotate{base_path}/{version}/{pathv1}/{pathv2}/crl/rotate?{query}Yes
getCertImportQueue(namespace, secretmount, list, callback)getCertImportQueue{base_path}/{version}/{pathv1}/{pathv2}/import-queue/?{query}Yes
getCertImportQueueRole(namespace, secretmount, role, callback)getCertImportQueueRole{base_path}/{version}/{pathv1}/{pathv2}/import-queue/{pathv3}?{query}Yes
postCertIntermediateGenerateExported(namespace, secretmount, exported, body, callback)postCertIntermediateGenerateExported{base_path}/{version}/{pathv1}/{pathv2}/intermediate/generate/{pathv3}?{query}Yes
postCertIntermediateSetSigned(namespace, secretmount, body, callback)postCertIntermediateSetSigned{base_path}/{version}/{pathv1}/{pathv2}/intermediate/set-signed?{query}Yes
postCertIssueRole(namespace, secretmount, role, body, callback)postCertIssueRole{base_path}/{version}/{pathv1}/{pathv2}/issue/{pathv3}?{query}Yes
postCertRevoke(namespace, secretmount, body, callback)postCertRevoke{base_path}/{version}/{pathv1}/{pathv2}/revoke?{query}Yes
getSecretEngineRoles(namespace, secretmount, list, callback)getSecretEngineRoles{base_path}/{version}/{pathv1}/{pathv2}/roles?{query}Yes
getSecretEngineRolesName(namespace, secretmount, name, callback)getSecretEngineRolesName{base_path}/{version}/{pathv1}/{pathv2}/roles/{pathv3}?{query}Yes
postSecretEngineRolesName(namespace, secretmount, name, body, callback)postSecretEngineRolesName{base_path}/{version}/{pathv1}/{pathv2}/roles/{pathv3}?{query}Yes
deleteSecretEngineRolesName(namespace, secretmount, name, callback)deleteSecretEngineRolesName{base_path}/{version}/{pathv1}/{pathv2}/roles/{pathv3}?{query}Yes
deleteCertRoot(namespace, secretmount, callback)deleteCertRoot{base_path}/{version}/{pathv1}/{pathv2}/root?{query}Yes
postCertRootGenerateExported(namespace, secretmount, exported, body, callback)postCertRootGenerateExported{base_path}/{version}/{pathv1}/{pathv2}/root/generate/{pathv3}?{query}Yes
postCertRootSignIntermediate(namespace, secretmount, body, callback)postCertRootSignIntermediate{base_path}/{version}/{pathv1}/{pathv2}/root/sign-intermediate?{query}Yes
postCertRootSignSelfIssued(namespace, secretmount, body, callback)postCertRootSignSelfIssued{base_path}/{version}/{pathv1}/{pathv2}/root/sign-self-issued?{query}Yes
getCertShowVenafiRolePolicyMap(namespace, secretmount, callback)getCertShowVenafiRolePolicyMap{base_path}/{version}/{pathv1}/{pathv2}/show-venafi-role-policy-map?{query}Yes
postCertSignVerbatim(namespace, secretmount, body, callback)postCertSignVerbatim{base_path}/{version}/{pathv1}/{pathv2}/sign-verbatim?{query}Yes
postCertSignVerbatimRole(namespace, secretmount, role, body, callback)postCertSignVerbatimRole{base_path}/{version}/{pathv1}/{pathv2}/sign-verbatim/{pathv3}?{query}Yes
postCertSignRole(namespace, secretmount, role, body, callback)postCertSignRole{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postCertTidy(namespace, secretmount, body, callback)postCertTidy{base_path}/{version}/{pathv1}/{pathv2}/tidy?{query}Yes
getCertVenafi(namespace, secretmount, list, callback)getCertVenafi{base_path}/{version}/{pathv1}/{pathv2}/venafi?{query}Yes
getCertVenafiPolicy(namespace, secretmount, list, callback)getCertVenafiPolicy{base_path}/{version}/{pathv1}/{pathv2}/venafi-policy/?{query}Yes
getCertVenafiPolicyName(namespace, secretmount, name, callback)getCertVenafiPolicyName{base_path}/{version}/{pathv1}/{pathv2}/venafi-policy/{pathv3}?{query}Yes
postCertVenafiPolicyName(namespace, secretmount, name, body, callback)postCertVenafiPolicyName{base_path}/{version}/{pathv1}/{pathv2}/venafi-policy/{pathv3}?{query}Yes
deleteCertVenafiPolicyName(namespace, secretmount, name, callback)deleteCertVenafiPolicyName{base_path}/{version}/{pathv1}/{pathv2}/venafi-policy/{pathv3}?{query}Yes
getCertVenafiPolicyNamePolicy(namespace, secretmount, name, callback)getCertVenafiPolicyNamePolicy{base_path}/{version}/{pathv1}/{pathv2}/venafi-policy/{pathv3}/policy?{query}Yes
postCertVenafiPolicyNamePolicy(namespace, secretmount, name, callback)postCertVenafiPolicyNamePolicy{base_path}/{version}/{pathv1}/{pathv2}/venafi-policy/{pathv3}/policy?{query}Yes
getCertVenafiSyncPolicies(namespace, secretmount, callback)getCertVenafiSyncPolicies{base_path}/{version}/{pathv1}/{pathv2}/venafi-sync-policies?{query}Yes
getCertVenafiName(namespace, secretmount, name, callback)getCertVenafiName{base_path}/{version}/{pathv1}/{pathv2}/venafi/{pathv3}?{query}Yes
postCertVenafiName(namespace, secretmount, name, body, callback)postCertVenafiName{base_path}/{version}/{pathv1}/{pathv2}/venafi/{pathv3}?{query}Yes
deleteCertVenafiName(namespace, secretmount, name, callback)deleteCertVenafiName{base_path}/{version}/{pathv1}/{pathv2}/venafi/{pathv3}?{query}Yes
getSecretEngineCodeName(namespace, secretmount, name, callback)getSecretEngineCodeName{base_path}/{version}/{pathv1}/{pathv2}/code/{pathv3}?{query}Yes
postSecretEngineCodeName(namespace, secretmount, name, body, callback)postSecretEngineCodeName{base_path}/{version}/{pathv1}/{pathv2}/code/{pathv3}?{query}Yes
getSecretEngineKeysName(namespace, secretmount, name, callback)getSecretEngineKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postSecretEngineKeysName(namespace, secretmount, name, body, callback)postSecretEngineKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
deleteSecretEngineKeysName(namespace, secretmount, name, callback)deleteSecretEngineKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
getSecretEngineBackupName(namespace, secretmount, name, callback)getSecretEngineBackupName{base_path}/{version}/{pathv1}/{pathv2}/backup/{pathv3}?{query}Yes
getSecretEngineCacheConfig(namespace, secretmount, callback)getSecretEngineCacheConfig{base_path}/{version}/{pathv1}/{pathv2}/cache-config?{query}Yes
postSecretEngineCacheConfig(namespace, secretmount, body, callback)postSecretEngineCacheConfig{base_path}/{version}/{pathv1}/{pathv2}/cache-config?{query}Yes
postSecretEngineDatakeyPlaintextName(namespace, secretmount, name, plaintext, body, callback)postSecretEngineDatakeyPlaintextName{base_path}/{version}/{pathv1}/{pathv2}/datakey/{pathv3}/{pathv4}?{query}Yes
postSecretEngineDecryptName(namespace, secretmount, name, body, callback)postSecretEngineDecryptName{base_path}/{version}/{pathv1}/{pathv2}/decrypt/{pathv3}?{query}Yes
postSecretEngineEncryptName(namespace, secretmount, name, body, callback)postSecretEngineEncryptName{base_path}/{version}/{pathv1}/{pathv2}/encrypt/{pathv3}?{query}Yes
getSecretEngineExportTypeName(namespace, secretmount, name, type, callback)getSecretEngineExportTypeName{base_path}/{version}/{pathv1}/{pathv2}/export/{pathv3}/{pathv4}?{query}Yes
getSecretEngineExportTypeNameVersion(namespace, secretmount, name, type, version, callback)getSecretEngineExportTypeNameVersion{base_path}/{version}/{pathv1}/{pathv2}/export/{pathv3}/{pathv4}/{pathv5}?{query}Yes
postSecretEngineHash(namespace, secretmount, body, callback)postSecretEngineHash{base_path}/{version}/{pathv1}/{pathv2}/hash?{query}Yes
postSecretEngineHashUrlalgorithm(namespace, secretmount, urlalgorithm, body, callback)postSecretEngineHashUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/hash/{pathv3}?{query}Yes
postSecretEngineHmacName(namespace, secretmount, name, body, callback)postSecretEngineHmacName{base_path}/{version}/{pathv1}/{pathv2}/hmac/{pathv3}?{query}Yes
postSecretEngineHmacNameUrlalgorithm(namespace, secretmount, name, urlalgorithm, body, callback)postSecretEngineHmacNameUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/hmac/{pathv3}/{pathv4}?{query}Yes
postSecretEngineKeysNameConfig(namespace, secretmount, name, body, callback)postSecretEngineKeysNameConfig{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}/config?{query}Yes
postSecretEngineKeysNameRotate(namespace, secretmount, name, callback)postSecretEngineKeysNameRotate{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}/rotate?{query}Yes
postSecretEngineKeysNameTrim(namespace, secretmount, name, body, callback)postSecretEngineKeysNameTrim{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}/trim?{query}Yes
postSecretEngineRandom(namespace, secretmount, body, callback)postSecretEngineRandom{base_path}/{version}/{pathv1}/{pathv2}/random?{query}Yes
postSecretEngineRandomUrlbytes(namespace, secretmount, urlbytes, body, callback)postSecretEngineRandomUrlbytes{base_path}/{version}/{pathv1}/{pathv2}/random/{pathv3}?{query}Yes
postSecretEngineRestore(namespace, secretmount, body, callback)postSecretEngineRestore{base_path}/{version}/{pathv1}/{pathv2}/restore?{query}Yes
postSecretEngineRestoreName(namespace, secretmount, name, body, callback)postSecretEngineRestoreName{base_path}/{version}/{pathv1}/{pathv2}/restore/{pathv3}?{query}Yes
postSecretEngineRewrapName(namespace, secretmount, name, body, callback)postSecretEngineRewrapName{base_path}/{version}/{pathv1}/{pathv2}/rewrap/{pathv3}?{query}Yes
postSecretEngineSignName(namespace, secretmount, name, body, callback)postSecretEngineSignName{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postSecretEngineSignNameUrlalgorithm(namespace, secretmount, name, urlalgorithm, body, callback)postSecretEngineSignNameUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}/{pathv4}?{query}Yes
postSecretEngineVerifyName(namespace, secretmount, name, body, callback)postSecretEngineVerifyName{base_path}/{version}/{pathv1}/{pathv2}/verify/{pathv3}?{query}Yes
postSecretEngineVerifyNameUrlalgorithm(namespace, secretmount, name, urlalgorithm, body, callback)postSecretEngineVerifyNameUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/verify/{pathv3}/{pathv4}?{query}Yes
getSshConfigCa(namespace, sshmount, callback)getSshConfigCa{base_path}/{version}/{pathv1}/{pathv2}/config/ca?{query}Yes
postSshConfigCa(namespace, sshmount, body, callback)postSshConfigCa{base_path}/{version}/{pathv1}/{pathv2}/config/ca?{query}Yes
deleteSshConfigCa(namespace, sshmount, callback)deleteSshConfigCa{base_path}/{version}/{pathv1}/{pathv2}/config/ca?{query}Yes
getSshConfigZeroaddress(namespace, sshmount, callback)getSshConfigZeroaddress{base_path}/{version}/{pathv1}/{pathv2}/config/zeroaddress?{query}Yes
postSshConfigZeroaddress(namespace, sshmount, body, callback)postSshConfigZeroaddress{base_path}/{version}/{pathv1}/{pathv2}/config/zeroaddress?{query}Yes
deleteSshConfigZeroaddress(namespace, sshmount, callback)deleteSshConfigZeroaddress{base_path}/{version}/{pathv1}/{pathv2}/config/zeroaddress?{query}Yes
postSshCredsRole(namespace, sshmount, role, body, callback)postSshCredsRole{base_path}/{version}/{pathv1}/{pathv2}/creds/{pathv3}?{query}Yes
postSshKeysKeyName(namespace, sshmount, keyName, body, callback)postSshKeysKey_name{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
deleteSshKeysKeyName(namespace, sshmount, keyName, callback)deleteSshKeysKey_name{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postSshLookup(namespace, sshmount, body, callback)postSshLookup{base_path}/{version}/{pathv1}/{pathv2}/lookup?{query}Yes
getSshPublicKey(namespace, sshmount, callback)getSshPublic_key{base_path}/{version}/{pathv1}/{pathv2}/public_key?{query}Yes
postSshSignRole(namespace, sshmount, role, body, callback)postSshSignRole{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postSshVerify(namespace, sshmount, body, callback)postSshVerify{base_path}/{version}/{pathv1}/{pathv2}/verify?{query}Yes
getTotpCodeName(namespace, totpmount, name, callback)getTotpCodeName{base_path}/{version}/{pathv1}/{pathv2}/code/{pathv3}?{query}Yes
postTotpCodeName(namespace, totpmount, name, body, callback)postTotpCodeName{base_path}/{version}/{pathv1}/{pathv2}/code/{pathv3}?{query}Yes
getTotpKeys(namespace, totpmount, list, callback)getTotpKeys{base_path}/{version}/{pathv1}/{pathv2}/keys?{query}Yes
getTotpKeysName(namespace, totpmount, name, callback)getTotpKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postTotpKeysName(namespace, totpmount, name, body, callback)postTotpKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
deleteTotpKeysName(namespace, totpmount, name, callback)deleteTotpKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
getTransitBackupName(namespace, transitmount, name, callback)getTransitBackupName{base_path}/{version}/{pathv1}/{pathv2}/backup/{pathv3}?{query}Yes
getTransitCacheConfig(namespace, transitmount, callback)getTransitCacheConfig{base_path}/{version}/{pathv1}/{pathv2}/cache-config?{query}Yes
postTransitCacheConfig(namespace, transitmount, body, callback)postTransitCacheConfig{base_path}/{version}/{pathv1}/{pathv2}/cache-config?{query}Yes
postTransitDatakeyPlaintextName(namespace, transitmount, name, plaintext, body, callback)postTransitDatakeyPlaintextName{base_path}/{version}/{pathv1}/{pathv2}/datakey/{pathv3}/{pathv4}?{query}Yes
postTransitDecryptName(namespace, transitmount, name, body, callback)postTransitDecryptName{base_path}/{version}/{pathv1}/{pathv2}/decrypt/{pathv3}?{query}Yes
postTransitEncryptName(namespace, transitmount, name, body, callback)postTransitEncryptName{base_path}/{version}/{pathv1}/{pathv2}/encrypt/{pathv3}?{query}Yes
getTransitExportTypeName(namespace, transitmount, name, type, callback)getTransitExportTypeName{base_path}/{version}/{pathv1}/{pathv2}/export/{pathv3}/{pathv4}?{query}Yes
getTransitExportTypeNameVersion(namespace, transitmount, name, type, version, callback)getTransitExportTypeNameVersion{base_path}/{version}/{pathv1}/{pathv2}/export/{pathv3}/{pathv4}/{pathv5}?{query}Yes
postTransitHash(namespace, transitmount, body, callback)postTransitHash{base_path}/{version}/{pathv1}/{pathv2}/hash?{query}Yes
postTransitHashUrlalgorithm(namespace, transitmount, urlalgorithm, body, callback)postTransitHashUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/hash/{pathv3}?{query}Yes
postTransitHmacName(namespace, transitmount, name, body, callback)postTransitHmacName{base_path}/{version}/{pathv1}/{pathv2}/hmac/{pathv3}?{query}Yes
postTransitHmacNameUrlalgorithm(namespace, transitmount, name, urlalgorithm, body, callback)postTransitHmacNameUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/hmac/{pathv3}/{pathv4}?{query}Yes
getTransitKeys(namespace, transitmount, list, callback)getTransitKeys{base_path}/{version}/{pathv1}/{pathv2}/keys?{query}Yes
getTransitKeysName(namespace, transitmount, name, callback)getTransitKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postTransitKeysName(namespace, transitmount, name, body, callback)postTransitKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
deleteTransitKeysName(namespace, transitmount, name, callback)deleteTransitKeysName{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}?{query}Yes
postTransitKeysNameConfig(namespace, transitmount, name, body, callback)postTransitKeysNameConfig{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}/config?{query}Yes
postTransitKeysNameRotate(namespace, transitmount, name, callback)postTransitKeysNameRotate{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}/rotate?{query}Yes
postTransitKeysNameTrim(namespace, transitmount, name, body, callback)postTransitKeysNameTrim{base_path}/{version}/{pathv1}/{pathv2}/keys/{pathv3}/trim?{query}Yes
postTransitRandom(namespace, transitmount, body, callback)postTransitRandom{base_path}/{version}/{pathv1}/{pathv2}/random?{query}Yes
postTransitRandomUrlbytes(namespace, transitmount, urlbytes, body, callback)postTransitRandomUrlbytes{base_path}/{version}/{pathv1}/{pathv2}/random/{pathv3}?{query}Yes
postTransitRestore(namespace, transitmount, body, callback)postTransitRestore{base_path}/{version}/{pathv1}/{pathv2}/restore?{query}Yes
postTransitRestoreName(namespace, transitmount, name, body, callback)postTransitRestoreName{base_path}/{version}/{pathv1}/{pathv2}/restore/{pathv3}?{query}Yes
postTransitRewrapName(namespace, transitmount, name, body, callback)postTransitRewrapName{base_path}/{version}/{pathv1}/{pathv2}/rewrap/{pathv3}?{query}Yes
postTransitSignName(namespace, transitmount, name, body, callback)postTransitSignName{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}?{query}Yes
postTransitSignNameUrlalgorithm(namespace, transitmount, name, urlalgorithm, body, callback)postTransitSignNameUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/sign/{pathv3}/{pathv4}?{query}Yes
postTransitVerifyName(namespace, transitmount, name, body, callback)postTransitVerifyName{base_path}/{version}/{pathv1}/{pathv2}/verify/{pathv3}?{query}Yes
postTransitVerifyNameUrlalgorithm(namespace, transitmount, name, urlalgorithm, body, callback)postTransitVerifyNameUrlalgorithm{base_path}/{version}/{pathv1}/{pathv2}/verify/{pathv3}/{pathv4}?{query}Yes
getSysInternalCountersActivity(namespace, callback)getSysInternalCountersActivity{base_path}/{version}/{pathv1}/sys/internal/counters/activity?{query}Yes
getSysInternalCountersActivityMonthly(namespace, callback)getSysInternalCountersActivityMonthly{base_path}/{version}/{pathv1}/sys/internal/counters/activity/monthly?{query}Yes
getSysInternalCountersConfig(namespace, callback)getSysInternalCountersConfig{base_path}/{version}/{pathv1}/sys/internal/counters/config?{query}Yes
postSysInternalCountersConfig(namespace, body, callback)postSysInternalCountersConfig{base_path}/{version}/{pathv1}/sys/internal/counters/config?{query}Yes
getSysInternalUiFeatureFlags(namespace, callback)getSysInternalUiFeatureFlags{base_path}/{version}/{pathv1}/sys/internal/ui/feature-flags?{query}Yes
getSysPprofAllocs(namespace, callback)getSysPprofAllocs{base_path}/{version}/{pathv1}/sys/pprof/allocs?{query}Yes
getSysPprofBlock(namespace, callback)getSysPprofBlock{base_path}/{version}/{pathv1}/sys/pprof/block?{query}Yes
getSysPprofMutex(namespace, callback)getSysPprofMutex{base_path}/{version}/{pathv1}/sys/pprof/mutex?{query}Yes
getSysPprofThreadcreate(namespace, callback)getSysPprofThreadcreate{base_path}/{version}/{pathv1}/sys/pprof/threadcreate?{query}Yes
getSysRotateConfig(namespace, callback)getSysRotateConfig{base_path}/{version}/{pathv1}/sys/rotate/config?{query}Yes
postSysRotateConfig(namespace, body, callback)postSysRotateConfig{base_path}/{version}/{pathv1}/sys/rotate/config?{query}Yes
getSysStorageRaftAutopilotConfiguration(namespace, callback)getSysStorageRaftAutopilotConfiguration{base_path}/{version}/{pathv1}/sys/storage/raft/autopilot/configuration?{query}Yes
postSysStorageRaftAutopilotConfiguration(namespace, body, callback)postSysStorageRaftAutopilotConfiguration{base_path}/{version}/{pathv1}/sys/storage/raft/autopilot/configuration?{query}Yes
getSysStorageRaftAutopilotState(namespace, callback)getSysStorageRaftAutopilotState{base_path}/{version}/{pathv1}/sys/storage/raft/autopilot/state?{query}Yes
getSysStorageRaftSnapshotAutoConfig(namespace, list, callback)getSysStorageRaftSnapshotAutoConfig{base_path}/{version}/{pathv1}/sys/storage/raft/snapshot-auto/config/?{query}Yes
getSysStorageRaftSnapshotAutoConfigName(namespace, name, callback)getSysStorageRaftSnapshotAutoConfigName{base_path}/{version}/{pathv1}/sys/storage/raft/snapshot-auto/config/{pathv2}?{query}Yes
postSysStorageRaftSnapshotAutoConfigName(namespace, name, body, callback)postSysStorageRaftSnapshotAutoConfigName{base_path}/{version}/{pathv1}/sys/storage/raft/snapshot-auto/config/{pathv2}?{query}Yes
deleteSysStorageRaftSnapshotAutoConfigName(namespace, name, callback)deleteSysStorageRaftSnapshotAutoConfigName{base_path}/{version}/{pathv1}/sys/storage/raft/snapshot-auto/config/{pathv2}?{query}Yes
getSysStorageRaftSnapshotAutoStatusName(namespace, name, callback)getSysStorageRaftSnapshotAutoStatusName{base_path}/{version}/{pathv1}/sys/storage/raft/snapshot-auto/status/{pathv2}?{query}Yes

Authentication

This document will go through the steps for authenticating the HashiCorpVault adapter with Basic Authentication. Properly configuring the properties for an adapter in IAP is critical for getting the adapter online. You can read more about adapter authentication HERE.

Basic Authentication

The HashiCorpVault adapter requires Basic Authentication. If you change authentication methods, you should change this section accordingly and merge it back into the adapter repository.

STEPS

  1. Ensure you have access to a HashiCorpVault server and that it is running
  2. Follow the steps in the README.md to import the adapter into IAP if you have not already done so
  3. Use the properties below for the properties.authentication field
    "authentication": {
    "auth_method": "basic user_password",
    "username": "<username>",
    "password": "<password>",
    "token": "",
    "token_timeout": 1800000,
    "token_cache": "local",
    "invalid_token_error": 401,
    "auth_field": "header.headers.Authorization",
    "auth_field_format": "Basic {b64}{username}:{password}{/b64}",
    "auth_logging": false,
    "client_id": "",
    "client_secret": "",
    "grant_type": ""
    }
  4. Restart the adapter. If your properties were set correctly, the adapter should go online.

Troubleshooting

  • Make sure you copied over the correct username and password.
  • Turn on debug level logs for the adapter in IAP Admin Essentials.
  • Turn on auth_logging for the adapter in IAP Admin Essentials (adapter properties).
  • Investigate the logs - in particular:
    • The FULL REQUEST log to make sure the proper headers are being sent with the request.
    • The FULL BODY log to make sure the payload is accurate.
    • The CALL RETURN log to see what the other system is telling us.
  • Remember when you are done to turn auth_logging off as you do not want to log credentials.

Additional Information

Enhancements

Adding a Second Instance of an Adapter

You can add a second instance of this adapter without adding new code on the file system. To do this go into the IAP Admin Essentials and add a new service config for this adapter. The two instances of the adapter should have unique ids. In addition, they should point to different instances (unique host and port) of the other system.

Adding Adapter Calls

There are multiple ways to add calls to an existing adapter.

The easiest way would be to use the Adapter Builder update process. This process takes in a Swagger or OpenAPI document, allows you to select the calls you want to add and then generates a zip file that can be used to update the adapter. Once you have the zip file simply put it in the adapter directory and execute npm run adapter:update.

mv updatePackage.zip adapter-hashicorp_vault
cd adapter-hashicorp_vault
npm run adapter:update

If you do not have a Swagger or OpenAPI document, you can use a Postman Collection and convert that to an OpenAPI document using APIMatic and then follow the first process.

If you want to manually update the adapter that can also be done the key thing is to make sure you update all of the right files. Within the entities directory you will find 1 or more entities. You can create a new entity or add to an existing entity. Each entity has an action.json file, any new call will need to be put in the action.json file. It will also need to be added to the enum for the ph_request_type in the appropriate schema files. Once this configuration is complete you will need to add the call to the adapter.js file and, in order to make it available as a workflow task in IAP, it should also be added to the pronghorn.json file. You can optionally add it to the unit and integration test files. There is more information on how to work on each of these files in the Adapter Technical Resources on our Documentation Site.

Files to update
* entities/<entity>/action.json: add an action
* entities/<entity>/schema.json (or the schema defined on the action): add action to the enum for ph_request_type
* adapter.js: add the new method and make sure it calls the proper entity and action
* pronghorn.json: add the new method
* test/unit/adapterTestUnit.js (optional but best practice): add unit test(s) - function is there, any required parameters error when not passed in
* test/integration/adapterTestIntegration.js (optional but best practice): add integration test

Adding Adapter Properties

While changing adapter properties is done in the service instance configuration section of IAP, adding properties has to be done in the adapter. To add a property you should edit the propertiesSchema.json with the proper information for the property. In addition, you should modify the sampleProperties to have the new property in it.

Files to update
* propertiesSchema.json: add the new property and how it is defined
* sampleProperties: add the new property with a default value
* test/unit/adapterTestUnit.js (optional but best practice): add the property to the global properties
* test/integration/adapterTestIntegration.js (optional but best practice): add the property to the global properties

Changing Adapter Authentication

Often an adapter is built before knowing the authentication and authentication processes can also change over time. The adapter supports many different kinds of authentication but it does require configuration. Some forms of authentication can be defined entirely with the adapter properties but others require configuration.

Files to update
* entities/.system/action.json: change the getToken action as needed
* entities/.system/schemaTokenReq.json: add input parameters (external name is name in other system)
* entities/.system/schemaTokenResp.json: add response parameters (external name is name in other system)
* propertiesSchema.json: add any new property and how it is defined
* sampleProperties: add any new property with a default value
* test/unit/adapterTestUnit.js (optional but best practice): add the property to the global properties
* test/integration/adapterTestIntegration.js (optional but best practice): add the property to the global properties

Enhancing Adapter Integration Tests

The adapter integration tests are written to be able to test in either stub (standalone) mode or integrated to the other system. However, if integrating to the other system, you may need to provide better data than what the adapter provides by default as that data is likely to fail for create and update. To provide better data, edit the adapter integration test file. Make sure you do not remove the marker and keep custom code below the marker so you do not impact future migrations. Once the edits are complete, run the integration test as it instructs you to above. When you run integrated to the other system, you can also save mockdata for future use by changing the isSaveMockData flag to true.

Files to update
* test/integration/adapterTestIntegration.js: add better data for the create and update calls so that they will not fail.

As mentioned previously, for most of these changes as well as other possible changes, there is more information on how to work on an adapter in the Adapter Technical Resources on our Documentation Site.

Contributing

First off, thanks for taking the time to contribute!

The following is a set of rules for contributing.

Code of Conduct

This project and everyone participating in it is governed by the Code of Conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to support@itential.com.

How to Contribute

Follow the contributing guide (here)[https://gitlab.com/itentialopensource/adapters/contributing-guide]

Helpful Links

Adapter Technical Resources

Node Scripts

There are several node scripts that now accompany the adapter. These scripts are provided to make several activities easier. Many of these scripts can have issues with different versions of IAP as they have dependencies on IAP and Mongo. If you have issues with the scripts please report them to the Itential Adapter Team. Each of these scripts are described below.

RunDescription
npm run adapter:installProvides an easier way to install the adapter.
npm run adapter:checkMigrateChecks whether your adapter can and should be migrated to the latest foundation.
npm run adapter:findPathCan be used to see if the adapter supports a particular API call.
npm run adapter:migrateProvides an easier way to update your adapter after you download the migration zip from Itential DevSite.
npm run adapter:updateProvides an easier way to update your adapter after you download the update zip from Itential DevSite.
npm run adapter:revertAllows you to revert after a migration or update if it resulted in issues.
npm run troubleshootProvides a way to troubleshoot the adapter - runs connectivity, healthcheck and basic get.
npm run connectivityProvides a connectivity check to the Servicenow system.
npm run healthcheckChecks whether the configured healthcheck call works to Servicenow.
npm run basicgetChecks whether the basic get calls works to Servicenow.

Troubleshoot

Run npm run troubleshoot to start the interactive troubleshooting process. The command allows you to verify and update connection, authentication as well as healthcheck configuration. After that it will test these properties by sending HTTP request to the endpoint. If the tests pass, it will persist these changes into IAP.

You also have the option to run individual commands to perform specific test:

  • npm run healthcheck will perform a healthcheck request of with current setting.
  • npm run basicget will perform some non-parameter GET request with current setting.
  • npm run connectivity will perform networking diagnostics of the adatper endpoint.

Connectivity Issues

  1. You can run the adapter troubleshooting script which will check connectivity, run the healthcheck and run basic get calls.
npm run troubleshoot
  1. Verify the adapter properties are set up correctly.
Go into the Itential Platform GUI and verify/update the properties
  1. Verify there is connectivity between the Itential Platform Server and HashiCorpVault Server.
ping the ip address of HashiCorpVault server
try telnet to the ip address port of HashiCorpVault
execute a curl command to the other system
  1. Verify the credentials provided for HashiCorpVault.
login to HashiCorpVault using the provided credentials
  1. Verify the API of the call utilized for HashiCorpVault Healthcheck.
Go into the Itential Platform GUI and verify/update the properties

Functional Issues

Adapter logs are located in /var/log/pronghorn. In older releases of the Itential Platform, there is a pronghorn.log file which contains logs for all of the Itential Platform. In newer versions, adapters can be configured to log into their own files.